/* ============================================================
   ACCORDAGES — design system
   Editorial · soft · airy · hand-drawn
============================================================ */

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

:root {
  /* Palette */
  --cream:        #FAF6F0;
  --cream-deep:   #F4EDE2;
  --sand:         #E8DDD0;
  --sand-deep:    #DCCFBE;
  --rose:         #E8C5C0;
  --rose-soft:    #F2D9D6;
  --blue:         #A8B8C8;
  --blue-soft:    #C8D2DC;
  --terracotta:   #C97A5E;
  --terracotta-d: #A85F45;
  --ink:          #3D3D3D;
  --ink-soft:     #6B6B6B;
  --ink-faint:    rgba(61, 61, 61, 0.14);
  --ink-line:     rgba(61, 61, 61, 0.08);

  /* Type */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing */
  --container:        1240px;
  --container-narrow:  880px;
  --gutter:           clamp(20px, 4vw, 48px);
  --section:          clamp(72px, 11vw, 160px);
  --section-sm:       clamp(48px, 7vw, 96px);

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

  /* Shadows */
  --shadow-soft:  0 1px 2px rgba(61,61,61,0.04), 0 8px 24px rgba(61,61,61,0.05);
  --shadow-lift:  0 1px 2px rgba(61,61,61,0.06), 0 16px 36px rgba(61,61,61,0.08);
}

/* ----- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

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

/* Subtle paper grain on the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.24 0 0 0 0 0.24 0 0 0 0 0.24 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: multiply;
}

/* ----- Typography ------------------------------------------ */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; color: var(--ink); margin: 0; line-height: 1.1; letter-spacing: -0.005em; }
h1 { font-size: clamp(40px, 6.4vw, 76px); font-weight: 500; line-height: 1.05; }
h2 { font-size: clamp(30px, 4.4vw, 50px); line-height: 1.1; }
h3 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.2; }
h4 { font-size: clamp(18px, 2vw, 22px); line-height: 1.3; }

p  { margin: 0 0 1em; }
em, .italic { font-style: italic; }

.serif { font-family: var(--font-serif); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ----- Layout ---------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.narrow { max-width: var(--container-narrow); }
section { padding: 80px 0; position: relative; }
section.tight { padding: 80px 0; }

.bg-cream  { background: var(--cream); }
.bg-sand   { background: var(--sand); }
.bg-rose   { background: var(--rose-soft); }
.bg-blue   { background: var(--blue-soft); }
.bg-deep   { background: var(--cream-deep); }

/* ----- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 18px rgba(201, 122, 94, 0.22);
}
.btn-primary:hover {
  background: var(--terracotta-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 122, 94, 0.28);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-faint);
}
.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--cream-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 6px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 4px 0;
}
.btn-ghost:hover { color: var(--terracotta); border-color: var(--terracotta); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ----- Header ---------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.header.scrolled { border-bottom-color: var(--ink-line); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.logo small {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  line-height: 1;
  margin-top: 3px;
}
.logo-mark {
  width: 28px; height: 28px;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .logo-img { height: 36px; }
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a:not(.btn) {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav a:not(.btn):hover::after, .nav a:not(.btn).active::after { transform: scaleX(1); }
.nav a.active { color: var(--ink); }

.burger {
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.burger span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu hidden by default — only visible on small screens when open */
.nav-mobile { display: none; }

@media (max-width: 960px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .nav-mobile {
    position: fixed;
    inset: 73px 0 0 0;
    background: var(--cream);
    padding: 40px var(--gutter);
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.4,.0,.2,1);
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
  }
  .nav-mobile.open { transform: translateY(0); }
  .nav-mobile a {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--ink);
    border-bottom: 1px solid var(--ink-line);
    padding-bottom: 18px;
  }
  .nav-mobile .btn { align-self: flex-start; margin-top: 16px; }
}

/* ----- Hero ------------------------------------------------ */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 28px; }
em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-illu {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.hero-illu .img-placeholder { aspect-ratio: 1/1; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-illu { max-width: 380px; margin: 0 auto; }
  .hero-cta { gap: 16px; }
}

/* ----- Cards ----------------------------------------------- */
.card {
  background: var(--cream);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-md);
  padding: 32px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--ink-faint);
}
.card-icon {
  width: 52px; height: 52px;
  margin-bottom: 22px;
  color: var(--terracotta);
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16px; }
.card .meta {
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--ink-line);
  padding-top: 16px;
  margin: 16px 0 20px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 2px;
  transition: color .25s ease, border-color .25s ease, gap .25s ease;
}
.card-link:hover { color: var(--terracotta); border-color: var(--terracotta); gap: 12px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Featured large 2-up cards */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.feature-card {
  background: var(--cream);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.feature-card.alt { background: var(--cream); border-color: var(--ink-line); }
.feature-card .tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 12px; }
.feature-card .formats {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.feature-card p { margin-bottom: 28px; }
.feature-illu { position: absolute; right: -20px; bottom: -20px; opacity: .55; pointer-events: none; }

@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ----- Section header pattern ------------------------------ */
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--ink-soft); font-size: 18px; max-width: 620px; }

/* ----- Speech / phrase cards (Ces mots vous parlent ?) ----- */
.phrases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 56px;
  align-items: stretch;
}
.phrase {
  background: var(--cream);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-md);
  padding: 32px 28px 28px;
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.7vw, 22px);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 180px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.phrase:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.phrase::before {
  content: "“";
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--rose);
  position: absolute;
  top: 12px; left: 22px;
  line-height: 1;
}
.phrase span { display: block; }

.transition-line {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ----- Profile / À propos ---------------------------------- */
.profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.profile .img-placeholder {
  aspect-ratio: 4/5;
  max-width: 380px;
  width: 100%;
}
/* When image sits in first column (home), push it to the right of its column
   so it visually pairs with the text on the right. When image sits in second
   column (a-propos), default left alignment already places it near the gap. */
.profile > div:first-child .img-placeholder { margin-left: auto; }
@media (max-width: 760px) {
  .profile { grid-template-columns: 1fr; }
  .profile .img-placeholder { max-width: 320px; margin: 0 auto !important; }
}

/* ----- Portrait photo (real image) ------------------------- */
.portrait {
  margin: 0;
  max-width: 380px;
  width: 100%;
}
.profile > div:first-child .portrait { margin-left: auto; }
.portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--r-lg);
  display: block;
}
.portrait figcaption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}
@media (max-width: 760px) {
  .portrait { max-width: 320px; margin: 0 auto; }
}

/* ----- Quote band ------------------------------------------ */
.quote-band {
  background: var(--sand);
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.quote-band::before, .quote-band::after {
  content: "";
  position: absolute;
  width: 80%; max-width: 360px; height: 1px;
  background: rgba(61,61,61,0.15);
  left: 50%; transform: translateX(-50%);
}
.quote-band::before { top: 56px; }
.quote-band::after  { bottom: 56px; }
.quote-band blockquote {
  margin: 0 auto 32px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 720px;
  padding: 0 var(--gutter);
}
.quote-band cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ----- Newsletter ------------------------------------------ */
.newsletter {
  background: var(--cream);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 64px);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.newsletter h3 { margin-bottom: 12px; }
.newsletter p  { color: var(--ink-soft); margin-bottom: 28px; font-size: 15px; }
.newsletter form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream-deep);
  border-radius: var(--r-pill);
  padding: 6px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 18px;
  font-size: 15px;
  color: var(--ink);
}
.newsletter input::placeholder { color: var(--ink-soft); }
.newsletter button {
  border: none;
  background: var(--terracotta);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
}
.newsletter button:hover { background: var(--terracotta-d); }

/* ----- Footer ---------------------------------------------- */
.footer {
  background: var(--cream-deep);
  padding: clamp(64px, 8vw, 100px) 0 32px;
  border-top: 1px solid var(--ink-line);
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { font-size: 28px; margin-bottom: 16px; }
.footer-brand .logo-img { height: 52px; }
.footer-brand p { color: var(--ink-soft); font-size: 14px; max-width: 320px; }
.footer h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--ink); transition: color .2s ease; }
.footer ul a:hover { color: var(--terracotta); }
.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .siret { letter-spacing: 0.06em; }
.footer-sign {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ----- Page hero (inner pages) ----------------------------- */
.page-hero {
  padding: 80px 0;
  position: relative;
}
.page-hero h1 { max-width: 880px; margin-bottom: 24px; }
.page-hero .lead { max-width: 680px; }

/* ----- Format / accompagnement detail ---------------------- */
.format {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--ink-line);
}
.format:first-of-type { border-top: 1px solid var(--ink-faint); }
.format:last-of-type { border-bottom: 1px solid var(--ink-faint); }
.format-icon {
  width: 64px; height: 64px;
  color: var(--terracotta);
}
.format-body h3 { margin-bottom: 14px; }
.format-body p { color: var(--ink-soft); max-width: 580px; margin-bottom: 14px; font-size: 17px; }
.format-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
}
.format-meta span { display: inline-flex; align-items: center; gap: 6px; }
.format-meta span::before { content: "·"; color: var(--ink-faint); }
.format-meta span:first-child::before { content: ""; }
.format-cta { padding-top: 8px; }
@media (max-width: 760px) {
  .format { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
  .format-icon { width: 44px; height: 44px; }
}

/* ----- Tag chips ------------------------------------------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  border: 1px solid var(--ink-faint);
  background: transparent;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover, .chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
/* Static label tags (not clickable filters) */
.chip.soft {
  background: var(--rose-soft);
  border: none;
  cursor: default;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  padding: 6px 16px;
  color: var(--ink);
}
.chip.soft:hover {
  background: var(--rose-soft);
  color: var(--ink);
  border: none;
  transform: none;
}

/* ----- Event cards ----------------------------------------- */
.events { display: grid; gap: 20px; }
.event {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 28px clamp(24px, 3vw, 36px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.event:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--ink-faint);
}
.event-date {
  text-align: center;
  font-family: var(--font-serif);
  border-right: 1px solid var(--ink-line);
  padding-right: clamp(20px, 3vw, 36px);
}
.event-date .day {
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  font-weight: 500;
  display: block;
  color: var(--ink);
}
.event-date .month {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-family: var(--font-sans);
  display: block;
  margin-top: 8px;
}
.event-date .year {
  font-size: 12px;
  color: var(--ink-soft);
  display: block;
  margin-top: 4px;
}
.event-body h3 { font-size: clamp(20px, 2vw, 24px); margin-bottom: 8px; }
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.event-meta .dot { color: var(--ink-faint); }
.event-format {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--rose-soft);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.event-cta { display: flex; gap: 12px; align-items: center; }

.event.placeholder {
  background: transparent;
  border: 1px dashed var(--ink-faint);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 36px;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 22px;
}

@media (max-width: 760px) {
  .event { grid-template-columns: 1fr; }
  .event-date {
    border-right: none;
    border-bottom: 1px solid var(--ink-line);
    padding-right: 0;
    padding-bottom: 16px;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .event-date .day { font-size: 36px; }
  .event-cta { justify-content: flex-start; }
}

/* ----- Form ------------------------------------------------ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contact-info {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
}
.contact-info dl { margin: 0; display: grid; gap: 24px; }
.contact-info dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.contact-info dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
}
.contact-info dd a { color: inherit; border-bottom: 1px solid var(--ink-faint); transition: border-color .2s ease, color .2s ease; }
.contact-info dd a:hover { color: var(--terracotta); border-color: var(--terracotta); }
.contact-info .socials {
  display: flex; gap: 12px;
  margin-top: 24px;
}
.contact-info .socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--ink-faint);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.contact-info .socials a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

form .field { margin-bottom: 22px; }
form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--ink-faint);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
  outline: none;
  font-family: var(--font-sans);
}
form input:focus, form select:focus, form textarea:focus {
  border-color: var(--terracotta);
  background: #fff;
}
form textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}
.checkbox input { margin-top: 4px; flex-shrink: 0; }

@media (max-width: 800px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ----- Map mini -------------------------------------------- */
.zone-map {
  border-radius: var(--r-lg);
  background: var(--cream-deep);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.zone-map h3 { margin-bottom: 8px; }
.zone-map p { color: var(--ink-soft); font-size: 15px; margin: 0; }
@media (max-width: 720px) {
  .zone-map { grid-template-columns: 1fr; }
}

/* ----- Pillars (À propos) ---------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--cream);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
}
.pillar h3 { margin-bottom: 12px; }
.pillar h3::before {
  content: "";
  display: block;
  width: 36px; height: 1px;
  background: var(--terracotta);
  margin-bottom: 16px;
}
.pillar p { color: var(--ink-soft); margin: 0; font-size: 15px; }
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }

/* ----- Logos placeholder ----------------------------------- */
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 4px;
  border-top: 1px solid var(--ink-line);
  border-left: 1px solid var(--ink-line);
}
.logos div {
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 36px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16px;
  background: var(--cream);
  min-height: 100px;
}

/* ----- 404 ------------------------------------------------- */
.notfound {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--gutter);
}
.notfound h1 {
  font-size: clamp(80px, 14vw, 180px);
  font-style: italic;
  color: var(--terracotta);
  line-height: 1;
}
.notfound p { color: var(--ink-soft); max-width: 480px; margin: 24px auto 32px; }

/* ----- Event detail page ----------------------------------- */
.event-hero {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--rose-soft);
  position: relative;
}
.event-hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.event-hero h1 { font-size: clamp(34px, 4.5vw, 56px); margin: 16px 0 24px; }
.event-hero-meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: 14px; color: var(--ink-soft); margin-bottom: 32px; }
.event-hero-meta strong { color: var(--ink); display: block; font-family: var(--font-serif); font-size: 18px; font-weight: 500; }
.event-hero .illu {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.event-hero .illu .img-placeholder { aspect-ratio: 1/1; }
@media (max-width: 800px) {
  .event-hero .container { grid-template-columns: 1fr; }
  .event-hero .illu { max-width: 320px; margin: 0 auto; }
}

.programme { display: grid; grid-template-columns: 100px 1fr; gap: 16px 32px; max-width: 720px; }
.programme dt { font-family: var(--font-serif); font-size: 22px; color: var(--terracotta); border-right: 1px solid var(--ink-line); padding-right: 16px; }
.programme dd { margin: 0; padding-top: 4px; color: var(--ink); }

.info-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 32px 0;
}
.info-cols div h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.info-cols div p { font-family: var(--font-serif); font-size: 19px; margin: 0; }

/* ----- Utilities ------------------------------------------- */
.text-center { text-align: center; }
.divider {
  width: 60px; height: 1px;
  background: var(--ink-faint);
  margin: 32px 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* Stamp / signature mark used as decorative accent */
.accord-mark {
  display: inline-block;
  width: 64px; height: 8px;
}

/* CTA closing band */
.cta-band {
  background: var(--cream-deep);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--ink-soft); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .actions { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Page-section subtle divider arcs */
.arc-divider {
  display: flex;
  justify-content: center;
  padding: 24px 0;
  color: var(--ink-faint);
}

/* À propos long-form */
.longform { max-width: 720px; }
.longform p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 4.4em;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--terracotta);
  font-weight: 500;
}
.longform p { font-size: 18px; line-height: 1.7; color: var(--ink); }

/* ----- Image placeholders (no drawn illustrations) -------- */
.img-placeholder {
  background: var(--rose-soft);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  position: relative;
  padding: 24px;
  width: 100%;
}
.img-placeholder::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(61, 61, 61, 0.22);
  border-radius: calc(var(--r-lg) - 6px);
  pointer-events: none;
}
.img-placeholder .img-tag {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}
.img-placeholder .img-desc {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.img-placeholder.rose  { background: var(--rose-soft); }
.img-placeholder.blue  { background: var(--blue-soft); }
.img-placeholder.sand  { background: var(--sand); }
.img-placeholder.cream { background: var(--cream-deep); }
.img-placeholder.ratio-1   { aspect-ratio: 1/1; }
.img-placeholder.ratio-4-5 { aspect-ratio: 4/5; }
.img-placeholder.ratio-3-4 { aspect-ratio: 3/4; }
.img-placeholder.ratio-16-10 { aspect-ratio: 16/10; }

/* ----- Numbered markers for format cards ------------------ */
.format-num {
  width: 80px;
  flex-shrink: 0;
}
.format-num span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  color: var(--terracotta);
  line-height: 1;
  display: block;
}
.format-num::after {
  content: "";
  display: block;
  width: 36px; height: 1px;
  background: var(--ink-faint);
  margin-top: 18px;
}
@media (max-width: 760px) {
  .format-num { width: auto; }
  .format-num span { font-size: 44px; }
}

/* ----- Zone grid (replaces drawn map) --------------------- */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.zone-cell {
  background: var(--cream);
  border: 1px solid var(--ink-faint);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}
.zone-cell .zone-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--terracotta);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.zone-cell .zone-name {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
}
@media (max-width: 540px) {
  .zone-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WordPress / Gutenberg — réconciliation avec la charte
============================================================ */
/* Largeur : c'est .container qui pilote, pas la contrainte de bloc */
.wp-block-group.container { max-width: var(--container); margin-inline: auto; }
.wp-block-group.container.hero-grid,
.wp-block-group.container.narrow { max-width: var(--container); }

/* Boutons natifs Gutenberg -> aspect .btn de la charte */
.wp-block-button__link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  background: var(--terracotta);
  color: #fff;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.wp-block-button__link:hover { background: var(--terracotta-d); color: #fff; }
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-faint);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: transparent;
}
.hero-cta.wp-block-buttons,
.actions.wp-block-buttons { gap: 14px 18px; align-items: center; }

/* Variante de carte "pros" : couleur du tag */
.feature-card.alt .tag { color: var(--terracotta-d); }

/* Neutralise les marges de bloc par défaut dans nos conteneurs */
.hero-text > *, .feature-card > *, .cta-band > * { margin-top: 0; }

/* Bloc Image natif utilisé pour le portrait (À propos) */
.wp-block-image.portrait { margin: 0; }
.wp-block-image.portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; border-radius: var(--r-lg); }

/* ----- Vrais visuels (blocs Image natifs) ------------------- */
.wp-block-image.visual { margin:0; }
.wp-block-image.visual img { width:100%; height:auto; display:block; border-radius: var(--r-lg); }
.profile .wp-block-image.visual { max-width:380px; }

/* ----- Ajustements espacements + hero pleine hauteur (2026-07) */
.hero .hero-grid { align-items: stretch; }
.hero .hero-illu { max-width: 520px; }
.hero .hero-illu .visual,
.hero .hero-illu .wp-block-image.visual img { height: 100%; object-fit: cover; }
@media (max-width: 640px) {
  section, section.tight, .hero, .page-hero { padding: 48px 0; }
  .hero .hero-illu .visual,
  .hero .hero-illu .wp-block-image.visual img { height: auto; }
}

/* ----- Références : villes / structures citées ------------- */
.references { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:16px; max-width:760px; }
.ref-cell { background:var(--cream); border:1px solid var(--ink-line); border-radius:var(--r-md); padding:24px 28px; }
.ref-cell strong { display:block; font-family:var(--font-serif); font-weight:500; font-size:22px; color:var(--ink); margin-bottom:4px; }
.ref-cell span { font-size:14px; color:var(--ink-soft); }

/* Hero accueil (WP) : la figure image remplit la hauteur */
.hero .hero-illu .wp-block-image.visual { height:100%; margin:0; }
.hero .hero-illu .wp-block-image.visual img { width:100%; }
