/* ==========================================================================
   Sylvie Lausberg — Design system "Contemporary Editorial"
   Feuille de style unique partagée par toutes les pages du site.
   Palette, typographie et composants dérivés de atelier_de_pens_e/DESIGN.md
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Couleurs */
  --background: #fff8f6;
  --surface: #fff8f6;
  --surface-white: #ffffff;
  --surface-container-low: #fff0ee;
  --surface-container: #ffe9e6;
  --surface-container-high: #fbe3df;
  --surface-container-highest: #f5ddda;
  --surface-variant: #f5ddda;
  --on-surface: #251917;
  --on-surface-variant: #58413e;
  --primary: #8f2116;
  --primary-container: #b0392b;
  --on-primary-container: #ffd6cf;
  --secondary: #465f86;
  --tertiary: #644500;
  --tertiary-container: #825c00;
  --mustard: #f9bc46;
  --mustard-soft: #ffdea9;
  --outline: #8c716d;
  --line: #d1cdc7;
  --beige-band: #ede7dd;
  --footer-bg: #465f86;

  /* Typographie */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  /* Espacements */
  --unit: 8px;
  --gutter: 24px;
  --margin-mobile: 20px;
  --margin-tablet: 32px;
  --margin-desktop: 64px;
  --section-gap: clamp(64px, 10vw, 128px);

  /* Formes */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--secondary);
}

::selection {
  background: var(--primary-container);
  color: #fff;
}

main {
  flex-grow: 1;
}

/* Icônes Material Symbols */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* --------------------------------------------------------------------------
   3. Typographie
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0;
}

.display-h1 {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-h2 {
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}

.heading-h3,
.subheading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
}

.body-lg {
  font-size: 18px;
  line-height: 1.6;
}

.label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.text-muted {
  color: var(--on-surface-variant);
}

.text-secondary {
  color: var(--secondary);
}

.text-primary {
  color: var(--primary);
}

.italic-serif {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
}

/* Petit trait décoratif sous les titres */
.rule {
  width: 48px;
  height: 4px;
  border: 0;
  margin: 0;
  background: var(--mustard);
}

.rule--navy {
  background: var(--secondary);
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--margin-mobile);
}

.section {
  padding-block: var(--section-gap);
}

.band-beige {
  background: var(--beige-band);
}

.band-tinted {
  background: var(--surface-container-low);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}

/* Colonnes desktop ; tout passe en une colonne < 900px */
[class^="col-"] {
  min-width: 0;
}

.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-12 { grid-column: span 12; }

.start-6 { grid-column-start: 6; }
.start-7 { grid-column-start: 7; }
.start-8 { grid-column-start: 8; }

@media (max-width: 900px) {
  .grid-12 {
    grid-template-columns: 1fr;
  }
  [class^="col-"],
  [class*=" col-"],
  .start-6,
  .start-7,
  .start-8 {
    grid-column: auto;
  }
}

/* En-tête de page intérieure */
.page-head {
  padding-top: clamp(48px, 8vw, 96px);
}

.page-head .rule {
  margin-bottom: 24px;
}

.page-head p.lead {
  max-width: 640px;
  color: var(--on-surface-variant);
  margin: 16px 0 0;
}

/* --------------------------------------------------------------------------
   5. En-tête / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--background);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}

.brand {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--secondary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.8;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--secondary);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.is-active {
  color: var(--primary);
  font-weight: 700;
  border-bottom-color: var(--primary);
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--secondary);
}

.nav-toggle .material-symbols-outlined {
  font-size: 32px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--background);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 0 20px;
}

.mobile-nav a {
  display: block;
  padding: 12px var(--margin-mobile);
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background: var(--surface-container-low);
}

.mobile-nav a.is-active {
  color: var(--primary);
  border-left-color: var(--primary);
  background: var(--surface-container-low);
}

@media (min-width: 1100px) {
  .site-nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

@media (min-width: 1240px) {
  .header-inner {
    padding-block: 16px;
  }
  .header-cta {
    display: inline-flex;
  }
}

/* --------------------------------------------------------------------------
   6. Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn .material-symbols-outlined {
  font-size: 18px;
}

.btn--primary {
  background: var(--primary-container);
  color: #fff;
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--navy {
  background: var(--secondary);
  color: #fff;
}

.btn--navy:hover {
  opacity: 0.9;
}

.btn--outline {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn--outline:hover {
  background: var(--surface-variant);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.arrow-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.arrow-link .material-symbols-outlined {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.arrow-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   7. Cartes, étiquettes, puces
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 32px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag--roman {
  background: var(--tertiary-container);
  color: #fff;
}

.tag--histoire {
  background: var(--mustard-soft);
  color: var(--tertiary);
}

.tag--psycho {
  background: #b6d0fd;
  color: var(--secondary);
}

.tag--societe {
  background: var(--surface-variant);
  color: var(--on-surface);
}

.chip {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  background: var(--surface-white);
  font-size: 14px;
  color: var(--secondary);
}

/* Carte "pilier" (accueil : Historienne / Psychanalyste / Militante) */
.pillar-card {
  background: var(--surface-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 32px;
  transition: border-color 0.25s ease;
}

.pillar-card:hover {
  border-color: var(--outline);
}

.pillar-card .material-symbols-outlined {
  font-size: 40px;
  margin-bottom: 20px;
}

.pillar-card--red .material-symbols-outlined { color: var(--primary); }
.pillar-card--blue .material-symbols-outlined { color: var(--secondary); }
.pillar-card--gold .material-symbols-outlined { color: var(--tertiary); }

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.pillar-card p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 16px;
}

/* Carte article (accueil) */
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.post-card:hover {
  box-shadow: 0 8px 24px rgba(37, 25, 23, 0.08);
}

.post-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card__media img {
  transform: scale(1.05);
}

.post-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  flex-grow: 1;
}

.post-card__body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
  transition: color 0.2s ease;
}

.post-card:hover .post-card__body h3 {
  color: var(--primary);
}

.post-card__excerpt {
  color: var(--on-surface-variant);
  font-size: 15px;
  margin: 0;
  flex-grow: 1;
}

/* Cadre photo avec coins décoratifs */
.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
}

.portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--secondary);
  box-shadow: 0 16px 40px rgba(37, 25, 23, 0.15);
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  pointer-events: none;
}

.portrait-frame::before {
  bottom: -24px;
  left: -24px;
  border-left: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
}

.portrait-frame::after {
  top: -24px;
  right: -24px;
  border-right: 1px solid var(--secondary);
  border-top: 1px solid var(--secondary);
}

/* --------------------------------------------------------------------------
   8. Timeline (À propos)
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  margin-left: 12px;
  padding-left: 32px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.timeline__item {
  position: relative;
}

.timeline__dot {
  position: absolute;
  left: -39px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-container);
  border: 2px solid var(--background);
}

.timeline__dot--gold {
  background: var(--tertiary);
}

.timeline__place {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--outline);
}

.timeline__item h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin: 6px 0 8px;
}

.timeline__item p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 16px;
}

/* Encadré "Mandats actuels" */
.mandates-box {
  position: relative;
  background: var(--surface-container);
  border: 1px solid var(--mustard);
  border-radius: var(--radius-sm);
  padding: 32px;
  overflow: hidden;
}

.mandates-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--mustard);
}

.mandates-box ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mandates-box li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--on-surface-variant);
}

.mandates-box li .material-symbols-outlined {
  color: var(--tertiary-container);
  font-size: 20px;
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   9. Livres
   -------------------------------------------------------------------------- */
.books-rule-title {
  border-top: 4px solid var(--mustard);
  padding-top: 16px;
  width: min(320px, 60%);
  margin-bottom: clamp(40px, 6vw, 80px);
}

.book-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(37, 25, 23, 0.08);
}

.featured-book {
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
  align-items: center;
  background: var(--surface-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 32px;
  margin-bottom: clamp(56px, 8vw, 96px);
}

.featured-book__cover {
  width: 100%;
  max-width: 340px;
}

.featured-book__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.featured-book__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
}

.featured-book__meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--outline);
  margin: 0;
}

@media (min-width: 900px) {
  .featured-book {
    flex-direction: row;
    padding: 40px;
  }
  .featured-book__cover {
    width: 45%;
    flex-shrink: 0;
  }
  .featured-book__body {
    width: 55%;
    padding-left: 24px;
  }
}

.quote-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--surface-container-low);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 40px;
}

.quote-card p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--on-surface);
  margin: 0;
}

.book-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: background-color 0.3s ease;
}

.book-card:hover {
  background: var(--surface-variant);
}

.book-card__genre {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 24px 0 8px;
}

.book-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
}

.book-card__year {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--outline);
  margin: 0 0 20px;
}

.book-card .arrow-link {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--primary);
  width: 100%;
}

.book-card .arrow-link:hover {
  color: var(--on-background);
  border-bottom: 0;
}

.books-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
}

@media (min-width: 600px) {
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .books-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   10. Articles & Presse
   -------------------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--on-surface);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover {
  background: var(--surface-variant);
}

.filter-btn.is-active {
  background: var(--surface-container);
  border-color: var(--outline);
}

@media (min-width: 900px) {
  .filters {
    flex-direction: column;
    position: sticky;
    top: 96px;
  }
}

.press-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.press-item + .press-item {
  padding-top: 48px;
}

.press-item__media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-container-low);
}

.press-item__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.85;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.press-item:hover .press-item__media img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.press-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.press-item__category {
  text-transform: none;
}

.press-item__category--presse { color: var(--primary); }
.press-item__category--academique { color: var(--mustard); }
.press-item__category--conferences { color: var(--secondary); }

.press-item__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--outline);
}

.press-item time {
  color: var(--on-surface-variant);
}

.press-item h2 {
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0;
  transition: color 0.2s ease;
}

.press-item:hover h2 {
  color: var(--primary);
}

.press-item p {
  color: var(--on-surface-variant);
  margin: 0 0 16px;
}

.press-list {
  display: flex;
  flex-direction: column;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.pagination button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--outline);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--on-surface-variant);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pagination button:hover {
  background: var(--surface-variant);
  color: var(--on-background);
}

.pagination button.is-current {
  background: var(--primary-container);
  border-color: var(--primary-container);
  color: #fff;
  cursor: default;
}

@media (min-width: 768px) {
  .press-item {
    flex-direction: row;
    align-items: flex-start;
  }
  .press-item__media {
    width: 33%;
    flex-shrink: 0;
  }
  .press-item__body {
    width: 67%;
    padding-top: 8px;
  }
}

/* --------------------------------------------------------------------------
   11. Psychanalyse
   -------------------------------------------------------------------------- */
.info-box-olive {
  background: #e8ebe4;
  border: 1px solid #c4c9bd;
  border-radius: var(--radius-sm);
  padding: 40px 32px;
}

.info-box-olive h3 {
  color: #4a5d4e;
  margin-bottom: 8px;
}

.info-box-olive .rule-line {
  width: 32px;
  height: 1px;
  background: var(--outline);
  margin-bottom: 28px;
}

.info-box-olive ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-box-olive li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-box-olive li .material-symbols-outlined {
  color: #4a5d4e;
  margin-top: 2px;
}

.info-box-olive h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #4a5d4e;
  margin: 0 0 4px;
}

.info-box-olive p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 16px;
}

.pull-quote {
  margin: 40px 0;
  padding-left: 24px;
  border-left: 3px solid var(--mustard);
}

.pull-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--on-surface);
  margin: 0;
}

.appointment-card {
  background: var(--surface-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: clamp(28px, 5vw, 48px);
}

.appointment-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.appointment-card__head .material-symbols-outlined {
  font-size: 32px;
  color: var(--secondary);
}

.cabinet-photo {
  border: 1px solid var(--line);
  background: var(--surface-container-low);
  padding: 8px;
}

.cabinet-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) sepia(0.1);
  opacity: 0.92;
}

.deco-square {
  display: none;
}

@media (min-width: 900px) {
  .deco-square {
    display: block;
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 96px;
    height: 96px;
    border-top: 1px solid var(--on-surface-variant);
    border-left: 1px solid var(--on-surface-variant);
  }
}

/* --------------------------------------------------------------------------
   12. Atelier de pensée
   -------------------------------------------------------------------------- */
.session-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 32px;
  transition: border-color 0.25s ease;
}

.session-card:hover {
  border-color: var(--outline);
}

.session-card__date {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

.session-card__date small {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--outline);
}

.session-card h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 4px 0 8px;
}

.session-card p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 15px;
  flex-grow: 1;
}

.format-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.format-step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
}

.format-step h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin: 6px 0 6px;
}

.format-step p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */
.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--on-surface);
  margin-bottom: 8px;
}

.input-underline {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--on-surface);
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.input-boxed {
  border: 1px solid var(--line);
  background: transparent;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--on-surface);
  border-radius: 0;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.input-underline:focus,
.input-boxed:focus {
  outline: none;
  border-color: var(--primary-container);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 700px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid .field--full {
    grid-column: 1 / -1;
  }
}

.form-status {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid #c4c9bd;
  background: #e8ebe4;
  border-radius: var(--radius-sm);
  color: #3c4a3e;
  font-size: 15px;
}

.form-status.is-visible {
  display: block;
}

.contact-info-card {
  background: var(--surface-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 32px;
  margin-bottom: 32px;
}

.contact-info-card h2 {
  margin-bottom: 28px;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-row + .contact-row {
  margin-top: 28px;
}

.contact-row > .material-symbols-outlined {
  color: var(--secondary);
  margin-top: 2px;
}

.contact-row h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin: 0 0 6px;
}

.contact-row p,
.contact-row a.big {
  font-size: 17px;
  margin: 0;
}

.contact-row a.big {
  color: var(--secondary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.contact-row a.big:hover {
  color: var(--primary);
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 18px;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.linkedin-btn:hover {
  background: var(--secondary);
  color: #fff;
}

.contact-illustration {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface-container-highest);
  overflow: hidden;
}

.contact-illustration img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   14. Sections génériques de contenu
   -------------------------------------------------------------------------- */
.split-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 48px);
  align-items: center;
}

@media (min-width: 900px) {
  .split-hero {
    grid-template-columns: 7fr 5fr;
  }
  .split-hero--reverse {
    grid-template-columns: 5fr 7fr;
  }
}

.centered-section {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}

.prose {
  max-width: 68ch;
}

.prose p {
  color: var(--on-surface-variant);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 24px;
}

.prose p.lead-intro {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.5;
  color: var(--on-surface);
}

.section-head {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head .rule {
  margin-bottom: 24px;
}

.section-head--between {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (min-width: 768px) {
  .section-head--between {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* --------------------------------------------------------------------------
   15. Utilitaires
   -------------------------------------------------------------------------- */
.relative {
  position: relative;
}

.text-center {
  text-align: center;
}

@media (min-width: 900px) {
  .divider-left {
    border-left: 1px solid var(--line);
    padding-left: clamp(24px, 4vw, 56px);
  }
}

/* --------------------------------------------------------------------------
   16. Pied de page
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--footer-bg);
  color: #fff0ee;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-block: clamp(56px, 8vw, 112px);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

.site-footer p.about {
  max-width: 300px;
  font-size: 15px;
  opacity: 0.85;
  margin: 0;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff0ee;
  opacity: 0.85;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-col a:hover {
  color: var(--mustard);
  opacity: 1;
}

.footer-col a.is-active {
  color: var(--mustard);
  font-weight: 700;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-block: 32px;
  border-top: 1px solid rgba(255, 240, 238, 0.2);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.65;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
