@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@font-face {
	font-family: 'recoletabold';
	src: url('../fonts/recoleta_bold.eot');
	src: url('../fonts/recoleta_bold.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/recoleta_bold.woff2') format('woff2'),
		 url('../fonts/recoleta_bold.woff') format('woff'),
		 url('../fonts/recoleta_bold.ttf') format('truetype'),
		 url('../fonts/recoleta_bold.svg#recoletabold') format('svg');
	font-weight: normal;
	font-style: normal;
}

/******************** Reset v1 ********************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*, ::after, ::before {
	box-sizing: border-box;
}

/******************** Typography ********************/

body {
	font-size: 16px;
	font-weight: 400;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: #525252;
	background: #fff;
	transition: 0.3s ease;
}

body.dark {
	background:#0a1f1e;
	color: #fff;
}

p {
	margin-bottom: 1rem;
}

em{
	font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'recoletabold';
	font-weight: 500;
	margin-bottom: .5rem;
	line-height: 1.2;
	color: #000;
}

body.dark h1, body.dark h2, body.dark h3, 
body.dark h4, body.dark h5, body.dark h6 {
	color: #fff;
}

h1 { font-size: calc(1.375rem + 1.5vw); }
h2 { font-size: calc(1.325rem + .9vw); }
h3 { font-size: calc(1.3rem + .6vw); }
h4 { font-size: calc(1.275rem + .3vw); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

strong, b {
	font-weight: 700;
}

/******************** Buttons ********************/

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600; /* Gardé à 600 pour la cohérence */
	font-size: 0.95rem;
	padding: 0.8rem 1.75rem; /* Padding uniforme pour la même taille */
	border: 2px solid transparent; /* Bordure par défaut pour éviter le "saut" */
	border-radius: 0.65rem;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1.2;
	user-select: none;
}

/* Bouton Principal */
.btn-primary {
	background: #133331;
	color: white;
	border-color: #133331;
	box-shadow: 0 4px 12px rgba(19, 51, 49, 0.2);
}

.btn-primary:hover {
	background: #0f2826;
	border-color: #0f2826;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(19, 51, 49, 0.3);
}

.btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(19, 51, 49, 0.2);
}

body.dark .btn-primary {
	background: #cbd8ac;
	color: #133331;
	border-color: #cbd8ac;
	box-shadow: 0 4px 12px rgba(203, 216, 172, 0.2);
}

body.dark .btn-primary:hover {
	background: #b8c794;
	border-color: #b8c794;
	box-shadow: 0 6px 16px rgba(203, 216, 172, 0.3);
}

/* Bouton Secondaire (inchangé) */
.btn-secondary {
	background: #cbd8ac;
	color: #133331;
	border-color: #cbd8ac;
}

.btn-secondary:hover {
	background: #b8c794;
	border-color: #b8c794;
	transform: translateY(-1px);
}

.btn-secondary:active {
	transform: translateY(0);
}

body.dark .btn-secondary {
	background: transparent;
	color: #cbd8ac;
	border: 2px solid #cbd8ac;
}

body.dark .btn-secondary:hover {
	background: rgba(203, 216, 172, 0.1);
	border-color: #fff;
	color: #fff;
}

/* Bouton Fantôme (Outline Style) */
.btn-ghost{
	background: transparent;
	color: #133331;
	border-color: #133331; /* Utilisation de la bordure pour l'outline */
	padding: 0.8rem 1.75rem; /* Taille uniforme */
	font-weight: 600;
}

.btn-ghost:hover {
	background: #133331; /* Remplissage au survol */
	color: white;
	border-color: #133331;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(19, 51, 49, 0.3);
}

.btn-ghost:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(19, 51, 49, 0.2);
}

body.dark .btn-ghost {
	color: #cbd8ac;
	border-color: #cbd8ac;
}

body.dark .btn-ghost:hover {
	background: #cbd8ac;
	color: #133331;
	border-color: #cbd8ac;
	box-shadow: 0 6px 16px rgba(203, 216, 172, 0.3);
}

/* Style pour les actions du formulaire */
.form-actions {
	display: flex;
	justify-content: space-between; /* Aligner les boutons à droite */
	align-items: center;
	gap: 1rem; /* Espacement réduit entre les deux boutons */
	margin-top: 2rem;
}

/******************** Table ********************/

/* ── 1. Wrapper scrollable ── */
 /* ============================================================
   TABLE — à coller dans style.css, section /*** Table ***/
   Cible :
     · <figure class="table"><table> ... (output éditeur Tiptap)
     · <div class="table-wrap"><table class="table-styled"> (composants manuels)
     · .prose table (tables brutes dans la prose)
   ============================================================ */


/* ── 1. Wrapper scrollable ── */
figure.table {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

figure.table table {
  width: 100%;
  min-width: 0; /* retire le min-width: 400px si tu l'avais mis */
}


figure.table,
.prose figure.table {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 0.75rem;
  /* border: 1px solid rgba(19, 51, 49, 0.10); */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(19, 51, 49, 0.15) transparent;
}

body.dark figure.table,
body.dark .prose figure.table {
  border-color: rgba(203, 216, 172, 0.12);
  scrollbar-color: rgba(203, 216, 172, 0.2) transparent;
}

/* table brute dans la prose (sans figure.table) */
.prose table {
  overflow-x: auto;
  border-radius: 0.75rem;
  border: 1px solid rgba(19, 51, 49, 0.10);
  margin: 2rem 0;
  -webkit-overflow-scrolling: touch;
}

body.dark .prose table {
  border-color: rgba(203, 216, 172, 0.12);
}


/* ── 2. Table de base ── */

figure.table table,
.prose figure.table table,
.prose table,
.table-styled {
  width: 100%;
  min-width: 400px;           /* force le scroll plutôt que l'écrasement */
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
}

body.dark figure.table table,
body.dark .prose figure.table table,
body.dark .prose table,
body.dark .table-styled {
  background: #0d2321;
}


/* ── 3. En-tête ── */

figure.table table thead tr,
.prose figure.table table thead tr,
.prose table thead tr,
.table-styled thead tr {
  background: #133331;
}

figure.table table th,
.prose figure.table table th,
.prose table th,
.table-styled th {
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
  border-bottom: none;
}

/* première colonne d'en-tête arrondie à gauche */
figure.table table thead tr th:first-child,
.prose figure.table table thead tr th:first-child,
.prose table thead tr th:first-child,
.table-styled thead tr th:first-child {
  border-radius: 0.65rem 0 0 0;
}

/* dernière colonne d'en-tête arrondie à droite */
figure.table table thead tr th:last-child,
.prose figure.table table thead tr th:last-child,
.prose table thead tr th:last-child,
.table-styled thead tr th:last-child {
  border-radius: 0 0.65rem 0 0;
}


/* ── 4. Corps ── */

figure.table table td,
.prose figure.table table td,
.prose table td,
.table-styled td {
  padding: 0.75rem 1.1rem;
  color: #525252;
  border-bottom: 1px solid rgba(19, 51, 49, 0.07);
  vertical-align: top;
  line-height: 1.6;
}

body.dark figure.table table td,
body.dark .prose figure.table table td,
body.dark .prose table td,
body.dark .table-styled td {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(203, 216, 172, 0.08);
}

/* Pas de bordure sur la dernière ligne */
figure.table table tbody tr:last-child td,
.prose figure.table table tbody tr:last-child td,
.prose table tbody tr:last-child td,
.table-styled tbody tr:last-child td {
  border-bottom: none;
}

/* Lignes paires — zèbre léger */
figure.table table tbody tr:nth-child(even),
.prose figure.table table tbody tr:nth-child(even),
.prose table tbody tr:nth-child(even),
.table-styled tbody tr:nth-child(even) {
  background: rgba(203, 216, 172, 0.05);
}

body.dark figure.table table tbody tr:nth-child(even),
body.dark .prose figure.table table tbody tr:nth-child(even),
body.dark .prose table tbody tr:nth-child(even),
body.dark .table-styled tbody tr:nth-child(even) {
  background: rgba(203, 216, 172, 0.04);
}

/* Hover sur les lignes */
figure.table table tbody tr,
.prose figure.table table tbody tr,
.prose table tbody tr,
.table-styled tbody tr {
  transition: background 0.18s ease;
}

figure.table table tbody tr:hover,
.prose figure.table table tbody tr:hover,
.prose table tbody tr:hover,
.table-styled tbody tr:hover {
  background: rgba(203, 216, 172, 0.10);
}

body.dark figure.table table tbody tr:hover,
body.dark .prose figure.table table tbody tr:hover,
body.dark .prose table tbody tr:hover,
body.dark .table-styled tbody tr:hover {
  background: rgba(203, 216, 172, 0.07);
}


/* ── 5. Cellules spéciales ── */

/* première colonne en gras/foncée (label) */
figure.table table td:first-child,
.prose figure.table table td:first-child,
.prose table td:first-child,
.table-styled td:first-child {
  font-weight: 600;
  color: #133331;
}

body.dark figure.table table td:first-child,
body.dark .prose figure.table table td:first-child,
body.dark .prose table td:first-child,
body.dark .table-styled td:first-child {
  color: #cbd8ac;
}

/* strong à l'intérieur d'une cellule */
figure.table table td strong,
.prose figure.table table td strong,
.prose table td strong,
.table-styled td strong {
  color: #133331;
  font-weight: 700;
}

body.dark figure.table table td strong,
body.dark .prose figure.table table td strong,
body.dark .prose table td strong,
body.dark .table-styled td strong {
  color: #fff;
}


/* ── 6. pied de tableau optionnel ── */

figure.table table tfoot td,
.prose figure.table table tfoot td,
.prose table tfoot td,
.table-styled tfoot td {
  padding: 0.65rem 1.1rem;
  font-size: 0.82rem;
  color: #999;
  font-style: italic;
  border-top: 1px solid rgba(19, 51, 49, 0.10);
  border-bottom: none;
  background: rgba(19, 51, 49, 0.02);
}

body.dark figure.table table tfoot td,
body.dark .prose figure.table table tfoot td,
body.dark .prose table tfoot td,
body.dark .table-styled tfoot td {
  border-top-color: rgba(203, 216, 172, 0.10);
  background: rgba(203, 216, 172, 0.02);
  color: rgba(255, 255, 255, 0.4);
}


/* ── 7. Légende (figcaption sous figure.table) ── */

figure.table figcaption {
  font-size: 0.80rem;
  color: #999;
  font-style: italic;
  text-align: center;
  padding: 0.6rem 1rem 0.9rem;
  border-top: 1px solid rgba(19, 51, 49, 0.07);
  background: rgba(19, 51, 49, 0.01);
  border-radius: 0 0 0.65rem 0.65rem;
}

body.dark figure.table figcaption {
  border-top-color: rgba(203, 216, 172, 0.08);
  background: rgba(203, 216, 172, 0.02);
  color: rgba(255, 255, 255, 0.4);
}


/* ── 8. Variantes de badge dans les cellules ── */
/* Usage : <td><span class="tbl-badge tbl-badge--ok">Oui</span></td> */

.tbl-badge {
  display: inline-block;
  padding: 0.18rem 0.65rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.tbl-badge--ok {
  background: rgba(125, 173, 101, 0.12);
  color: #4a8a2e;
}

body.dark .tbl-badge--ok {
  background: rgba(125, 173, 101, 0.15);
  color: #9dcf78;
}

.tbl-badge--warn {
  background: rgba(232, 167, 78, 0.12);
  color: #a06c20;
}

body.dark .tbl-badge--warn {
  background: rgba(232, 167, 78, 0.15);
  color: #e8a74e;
}

.tbl-badge--no {
  background: rgba(200, 80, 50, 0.10);
  color: #c85032;
}

body.dark .tbl-badge--no {
  background: rgba(200, 80, 50, 0.15);
  color: #e8734f;
}

.tbl-badge--neutral {
  background: rgba(82, 82, 82, 0.08);
  color: #525252;
}

body.dark .tbl-badge--neutral {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}


/* ── 9. Mobile ── */

@media (max-width: 600px) {

  /* Indicateur visuel de scroll horizontal */
  figure.table::after {
    content: '';
    display: block;
    height: 2px;
    margin: 0 1rem 0.75rem;
    border-radius: 1px;
    background: linear-gradient(to right, #cbd8ac 0%, transparent 100%);
    opacity: 0.4;
  }

  figure.table table th,
  .prose figure.table table th,
  .prose table th,
  .table-styled th {
    padding: 0.7rem 0.85rem;
    font-size: 0.70rem;
  }

  figure.table table td,
  .prose figure.table table td,
  .prose table td,
  .table-styled td {
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
  }
}


/******************** Form ********************/

.form-group {
	margin-bottom: 1.5rem;
	position: relative;
}

label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: #133331;
}

body.dark label {
	color: #cbd8ac;
}

.form-control {
	width: 100%;
	padding: 0.8rem 1rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #133331;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #e0e0e0;
	border-radius: 0.5rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	outline: none;
}

body.dark .form-control {
	color: #fff;
	background-color: rgba(203, 216, 172, 0.1);
	border-color: rgba(203, 216, 172, 0.2);
}

/* Focus */
.form-control:focus {
	border-color: #cbd8ac; /* Accent de couleur verte */
	box-shadow: 0 0 0 3px rgba(203, 216, 172, 0.5);
}

body.dark .form-control:focus {
	border-color: #b8c794;
	box-shadow: 0 0 0 3px rgba(19, 51, 49, 0.5);
}

/* État d'erreur */
.form-group.error .form-control {
	border-color: #e3342f; /* Rouge pour l'erreur */
	padding-right: 2.5rem; /* Espace pour l'icône d'erreur si vous l'ajoutez */
}

.form-group.error .form-control:focus {
	border-color: #e3342f;
	box-shadow: 0 0 0 3px rgba(227, 52, 47, 0.25);
}

.form-feedback.error {
	font-size: 0.875rem;
	color: #e3342f;
	margin-top: 0.25rem;
}

body.dark .form-feedback.error {
	color: #ff9894;
}

/* Case à cocher (Remember Me) */
.form-check {
	display: flex;
	align-items: center;
	padding-left: 0;
	margin-bottom: 1rem;
	user-select: none;
}

.form-check-input {
	/* Réinitialisation de l'apparence par défaut */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0;
	margin-right: 0.5rem;
	vertical-align: top;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 0.35rem;
	cursor: pointer;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.dark .form-check-input {
	background-color: rgba(203, 216, 172, 0.1);
	border-color: rgba(203, 216, 172, 0.2);
}

.form-check-input:checked {
	background-color: #133331; /* Couleur d'arrière-plan vérifiée */
	border-color: #133331;
	/* Style de la coche (utilisation d'un background-image) */
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

body.dark .form-check-input:checked {
	background-color: #cbd8ac;
	border-color: #cbd8ac;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23133331' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-label {
	cursor: pointer;
	font-weight: 400;
	color: #525252;
	margin-bottom: 0;
}

body.dark .form-check-label {
	color: rgba(255, 255, 255, 0.8);
}

/******************** Template ********************/

header {
	position: sticky;
	z-index: 100;
	top: 0;
	background: #fff;
	border-bottom: 1px solid rgba(19, 51, 49, 0.1);
	padding: 1rem 0;
	transition: 0.3s ease;
}

body.dark header {
	background: #061514;
	border-bottom-color: rgba(203, 216, 172, 0.2);
}

.header-container {
	padding: 0 1.5rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 70px;
	gap: 1rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: 'recoletabold';
	text-decoration: none;
	color: #133331;
	font-size: 1.5rem;
	z-index: 101;
	transition: 0.3s ease;
	flex-shrink: 0;
	position: relative;
	padding: 0.5rem 0;
}

.brand svg {
	fill: #133331;
}

body.dark .brand svg {
	fill: #fff;
}

.brand-logo {
	width: 40px;
	height: 40px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.brand-text {
	position: relative;
}

.logo-accent {
	fill: none;
	stroke: #133331;
	stroke-width: 2;
}

.logo-stroke {
	fill: none;
	stroke: #cbd8ac;
	stroke-width: 1.2;
}

.logo-primary{
	fill: #133331;
}

body.dark .brand{
	color: #fff;
}

body.dark .logo-accent{
	stroke: #fff;
}

body.dark .logo-stroke{
	stroke: #cbd8ac;
}

body.dark .logo-primary{
	fill: white;
}

/* Navigation Mobile */

.main-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(30px) saturate(180%);
	z-index: 99;
	transform: translateX(-100%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	padding: 100px 1.5rem 2rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	height: 100vh;
	height: 100dvh;
}

body.dark .main-nav {
	background: rgba(6, 21, 20, 0.98);
}

body.nav-open {
	overflow: hidden;
	height: 100vh;
}

.main-nav.nav-open {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

/* Mobile Search Trigger */
.mobile-search {
	margin-bottom: 2rem;
}

.search-trigger-mobile {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(203, 216, 172, 0.3);
	border-radius: 0.75rem;
	transition: 0.3s ease;
	cursor: pointer;
	color: #133331;
}

body.dark .search-trigger-mobile {
	background: rgba(19, 51, 49, 0.4);
	border-color: rgba(203, 216, 172, 0.2);
	color: #cbd8ac;;
}

.search-trigger-mobile:hover {
	background: rgba(255, 255, 255, 0.9);
	border-color: #cbd8ac;;
	transform: translateY(-2px);
}

body.dark .search-trigger-mobile:hover {
	background: rgba(19, 51, 49, 0.6);
}

.search-icon {
	width: 20px;
	height: 20px;
	stroke-width: 2;
	flex-shrink: 0;
}

.search-placeholder {
	font-weight: 500;
	font-size: 1.125rem;
}

/* Nav Items Mobile */
.nav-item {
	margin-bottom: 1rem;
	width: 100%;
}

.nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	font-weight: 500;
	font-size: 1.125rem;
	color: #133331;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 0.75rem;
	transition: 0.3s ease;
	position: relative;
	overflow: hidden;
	width: 100%;
	text-align: left;
	cursor: pointer;
	min-height: 56px;
	text-decoration: none;
}

body.dark .nav-link {
	color: #cbd8ac;;
	background: rgba(19, 51, 49, 0.4);
	border-color: rgba(203, 216, 172, 0.2);
}

.nav-link:hover {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(203, 216, 172, 0.5);
	transform: translateY(-2px);
}

body.dark .nav-link:hover {
	background: rgba(19, 51, 49, 0.6);
}

/* Mega Menu Mobile */
.mega-menu {
	display: none;
	overflow: hidden;
	transition: all 0.3s ease;
	opacity: 0;
	max-height: 0;
	margin-top: 0;
}

.mega-menu.open {
	display: block;
	opacity: 1;
	max-height: 2000px;
	margin-top: 1rem;
}

.nav-arrow {
	transition: transform 0.3s ease;
	width: 16px;
	height: 16px;
	stroke-width: 2;
}

.nav-item.open .nav-arrow {
	transform: rotate(180deg);
}

.mega-content {
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 0.75rem;
	border: 1px solid rgba(203, 216, 172, 0.3);
	backdrop-filter: blur(10px);
}

body.dark .mega-content {
	background: rgba(19, 51, 49, 0.6);
	border-color: rgba(203, 216, 172, 0.2);
}

.mega-categories {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.category-title {
	font-family: 'recoletabold';
	font-size: 1.1rem;
	color: #133331;
	margin-bottom: 0.75rem;
	font-weight: 600;
}

body.dark .category-title {
	color: #cbd8ac;;
}

.category-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.category-links li a {
	color: #525252;;
	text-decoration: none;
	padding: 0.25rem 0;
	font-size: 0.95rem;
	transition: 0.3s ease;
}

body.dark .category-links li a {
	color: rgba(255, 255, 255, 0.8);
}

.category-links li a:hover {
	color: #133331;
}

body.dark .category-links li a:hover {
	color: #cbd8ac;;
}

/* Month Highlight */
.month-highlight {
	padding: 1.5rem;
	background: rgba(203, 216, 172, 0.1);
	border-radius: 0.75rem;
	border: 1px solid rgba(203, 216, 172, 0.2);
}

body.dark .month-highlight {
	background: rgba(203, 216, 172, 0.05);
}

.highlight-title {
	font-weight: 600;
	color: #133331;
	margin-bottom: 0.5rem;
}

body.dark .highlight-title {
	color: #cbd8ac;;
}

.month-cta {
	background: #133331;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-size: 0.9rem;
	cursor: pointer;
	transition: 0.3s ease;
	margin-top: 1rem;
}

.month-cta:hover {
	background: #0f2826;
	transform: translateY(-1px);
}

body.dark .month-cta {
	background: #cbd8ac;;
	color: #133331;
}

body.dark .month-cta:hover {
	background: #b8c794;
}

.mobile-actions {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(19, 51, 49, 0.1);
}

body.dark .mobile-actions {
	border-top-color: rgba(203, 216, 172, 0.2);
}

.mobile-action-item {
	display: block;
	margin-bottom: 1rem;
	text-decoration: none;
}

.mobile-action-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 0.75rem;
	transition: 0.3s ease;
}

body.dark .mobile-action-content {
	background: rgba(19, 51, 49, 0.4);
	border-color: rgba(203, 216, 172, 0.2);
}

.mobile-action-text {
	font-weight: 500;
	color: #133331;
}

body.dark .mobile-action-text {
	color: #cbd8ac;;
}

.mobile-action-icon {
	font-size: 1.5rem;
}

/* Header Right Desktop */
.header-right {
	display: none;
}

/* Theme Toggle */
.theme-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	padding: 0.75rem;
	border-radius: 0.5rem;
	transition: 0.3s ease;
	color: #133331;
}

body.dark .theme-toggle {
	color: #cbd8ac;;
}

.theme-toggle:hover {
	background: rgba(203, 216, 172, 0.1);
}

.theme-icon {
	font-size: 1.25rem;
	display: inline-block;
	transition: transform 0.6s ease;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.theme-toggle.clicked .theme-icon {
	transform: rotate(360deg);
}

.theme-icon {
  display: inline-flex;
  align-items: center;
  font-size: 1.15rem;
}

.theme-icon .ph-sun { display: none; }
.theme-icon .ph-moon { display: inline; }

body.dark .theme-icon .ph-sun { display: inline; }
body.dark .theme-icon .ph-moon { display: none; }

/* Mobile Toggle */
.mobile-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	color: #133331;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 0.5rem;
	transition: 0.3s ease;
	z-index: 101;
	width: 44px;
	height: 44px;
}

body.dark .mobile-toggle {
	color: #fff;
}

.mobile-toggle:hover {
	background: rgba(203, 216, 172, 0.1);
	transform: scale(1.05);
}

.hamburger {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	position: relative;
	cursor: pointer;
	transition: transform 0.4s ease;
}

.mobile-toggle[aria-expanded="true"] .hamburger {
	transform: rotate(90deg);
}

.hamburger-line {
	position: absolute;
	width: 20px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.4s ease, opacity 0.3s ease;
}

.hamburger-line:nth-child(1) { top: 6px; }
.hamburger-line:nth-child(2) { top: 11px; }
.hamburger-line:nth-child(3) { top: 16px; }

.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
	transform: rotate(45deg);
	top: 11px;
}

.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
	opacity: 0;
	transform: scale(0);
}

.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
	transform: rotate(-45deg);
	top: 11px;
}

/********* Fil d'Ariane (Breadcrumb) *********/

.breadcrumb {
	padding: 1rem 0;
	background: transparent;
	margin: 0 auto;
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	padding: 0 1.5rem;
	margin: 0;
}

.breadcrumb li {
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	line-height: 1.4;
}

.breadcrumb li a {
	color: #525252;
	text-decoration: none;
	transition: color 0.2s ease;
	position: relative;
	font-weight: 400;
}

.breadcrumb li a:hover {
	color: #133331;
}

body.dark .breadcrumb li a {
	color: rgba(255, 255, 255, 0.7);
}

body.dark .breadcrumb li a:hover {
	color: #cbd8ac;
}

/* Dernier élément (page actuelle) */
.breadcrumb li:last-child {
	color: #133331;
	font-weight: 500;
}

body.dark .breadcrumb li:last-child {
	color: #fff;
}

/* Séparateur */
.breadcrumb .separator {
	color: rgba(82, 82, 82, 0.4);
	font-size: 1rem;
	user-select: none;
	margin: 0 0.25rem;
}

body.dark .breadcrumb .separator {
	color: rgba(255, 255, 255, 0.3);
}


/******************** Footer ********************/
footer {
	background: #133331;
	color: white;
	padding: 6rem 0 2rem;
}

.footer-main {
	margin: 0 auto;
	padding: 0 1.5rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer-brand a {
	font-family: 'recoletabold';
	color: #cbd8ac;;
	text-decoration: none;
	font-size: 1.5rem;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	line-height: 1.6;
	margin: 1rem 0;
}

.footer-brand ul {
	list-style: none;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-brand ul a {
	color: rgba(255, 255, 255, 0.7);
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 0.9rem;
	transition: 0.3s ease;
	text-decoration: none;
}

.footer-brand ul a:hover {
	color: #cbd8ac;
}

footer h5 {
	font-family: 'recoletabold';
	font-size: 1.125rem;
	color: #cbd8ac;
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 0.5rem;
}

footer h5::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: #f9d87f;
	border-radius: 9999px;
}

.footer-col ul a {
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	transition: 0.3s ease;
	display: block;
	padding: 0.25rem 0;
	text-decoration: none;
}

.footer-col ul a:hover {
	color: #cbd8ac;
	transform: translateX(4px);
}

.footer-bottom {
	margin: 0 auto;
	padding: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

.footer-bottom ul a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: 0.3s ease;
}

.footer-bottom ul a:hover {
	color: #cbd8ac;
}

/******************** Grid ********************/
/* === CONTAINERS === */

/* Container Standard (avec max-width) */
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
}

/* Container Fluid (toujours 100% de largeur) */
.container-fluid {
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
}

/* === Système de  GRILLE === */

.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.row > * {
	padding: 0 15px;
}

/* === COLONNES DE BASE === */

.col {
	flex: 1 0 0%;
}

.col-auto {
	flex: 0 0 auto;
	width: auto;
}

/* === COLONNES EXTRA SMALL (par dÃƒÂ©faut, mobile-first) === */

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* === UTILITAIRES D'ALIGNEMENT === */

.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }
.justify-content-evenly { justify-content: space-evenly; }

/* === SMALL - 576px+ === */
@media (min-width: 576px) {

	.brand {
		font-size: 1.25rem;
		gap: 0.5rem;
	}
	
	.brand-logo {
		width: 32px;
		height: 32px;
	}

	.container {
		max-width: 540px;
		padding: 0 20px;
	}
	.container-fluid {
		padding: 0 20px;
	}
	
	.col-sm { flex: 1 0 0%; }
	.col-sm-auto { flex: 0 0 auto; width: auto; }
	.col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-sm-3 { flex: 0 0 25%; max-width: 25%; }
	.col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-sm-6 { flex: 0 0 50%; max-width: 50%; }
	.col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-sm-9 { flex: 0 0 75%; max-width: 75%; }
	.col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-sm-12 { flex: 0 0 100%; max-width: 100%; }

	.justify-content-md-center {
		justify-content: center!important
	}
}

@media (min-width: 768px) {

	.breadcrumb {
		padding: 1.25rem 0;
	}
	
	.breadcrumb ol {
		padding: 0 2rem;
	}
	
	.breadcrumb li {
		font-size: 0.9rem;
	}

	.footer-main {
		grid-template-columns: 2fr 1fr 1fr 1fr;
		gap: 3rem;
	}

	.footer-bottom {
		flex-direction: row;
		gap: 0;
		text-align: left;
	}

	.footer-bottom ul {
		list-style: none;
		display: flex;
		gap: 1.5rem;
	}

	/******************** Grid ********************/

	.container {
		max-width: 720px;
		padding: 0 24px;
	}
	.container-fluid {
		padding: 0 24px;
	}
	
	.col-md { flex: 1 0 0%; }
	.col-md-auto { flex: 0 0 auto; width: auto; }
	.col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-md-3 { flex: 0 0 25%; max-width: 25%; }
	.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-md-6 { flex: 0 0 50%; max-width: 50%; }
	.col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-md-9 { flex: 0 0 75%; max-width: 75%; }
	.col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

/* === LARGE - 992px+ === */
@media (min-width: 992px) {

	.header-container {
		gap: 1rem;
		padding: 0 1.5rem;
	}
	
	.header-right {
		display: flex !important;
		align-items: center;
		gap: 0.75rem;
	}


	/* Navigation Desktop */
	.main-nav {
		position: static !important;
		transform: none !important;
		opacity: 1 !important;
		visibility: visible !important;
		background: none !important;
		backdrop-filter: none !important;
		padding: 0 !important;
		height: auto !important;
		overflow: visible !important;
		display: flex !important;
		flex-direction: row !important;
		flex: 1;
		justify-content: center;
		position: relative !important;
		max-width: 700px;
	}
	
	.mobile-search,
	.mobile-actions {
		display: none !important;
	}
	
	.nav-item {
		margin-bottom: 0 !important;
		margin-right: 0.25rem;
		width: auto !important;
		position: static !important;
	}
	
	.nav-item:first-child {
		position: relative !important;
	}
	
	.nav-item:last-child {
		margin-right: 0;
	}
	
	.nav-link {
		padding: 0.75rem 0.875rem !important;
		background: none !important;
		border: none !important;
		border-radius: 0.5rem !important;
		font-size: 0.9rem !important;
		min-height: auto !important;
		transition: all 0.2s ease !important;
		color: #133331 !important;
		font-weight: 500;
		white-space: nowrap;
	}
	
	body.dark .nav-link {
		color: #fff !important;
		background: none !important;
		border: none !important;
	}
	
	.nav-link:hover {
		background: rgba(203, 216, 172, 0.1) !important;
		border-color: transparent !important;
		transform: none !important;
		box-shadow: none !important;
	}
	
	.nav-arrow {
		width: 12px !important;
		height: 12px !important;
		margin-left: 0.5rem;
	}

	.mega-menu {
		position: fixed !important;
		top: 70px !important; /* Hauteur du header */
		left: 50% !important;
		transform: translateX(-50%) translateY(-10px) !important;
		width: 900px !important;
		max-width: calc(100vw - 40px) !important;
		margin-top: 0.5rem !important;
		z-index: 1000 !important;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
		border-radius: 0.75rem !important;
		display: none !important;
		opacity: 0 !important;
		max-height: none !important;
		transition: all 0.2s ease !important;
	}
	
	.nav-item:hover .mega-menu {
		display: block !important;
		opacity: 1 !important;
		transform: translateX(-50%) translateY(0) !important;
	}
	
	.nav-item.open .nav-arrow {
		transform: none !important;
	}
	
	.nav-item:hover .nav-arrow {
		transform: rotate(180deg) !important;
	}
	
	/* Structure du mega menu : 2 colonnes + highlight */
	.mega-content {
		display: flex !important;
		gap: 3rem !important;
	}
	
	.mega-categories {
		display: grid !important;
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
		gap: 2rem !important;
		flex: 1 !important;
	}
	
	.month-highlight {
		width: 250px !important;
		flex-shrink: 0 !important;
	}

	.mobile-search,
	.mobile-actions {
		display: none !important;
	}

	mobile-toggle {
		display: none !important;
	}
	
	/* Search Trigger Desktop - Version compacte */
	.search-trigger {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0.75rem;
		background: rgba(255, 255, 255, 0.9);
		border: 1px solid rgba(19, 51, 49, 0.1);
		border-radius: 0.5rem;
		cursor: pointer;
		transition: 0.3s ease;
		width: 44px;
		height: 44px;
	}
	
	body.dark .search-trigger {
		background: rgba(19, 51, 49, 0.6);
		border-color: rgba(203, 216, 172, 0.2);
	}
	
	.search-trigger:hover {
		border-color: #cbd8ac;
		box-shadow: 0 0 15px rgba(203, 216, 172, 0.3);
		transform: translateY(-1px);
	}
	
	.search-trigger-content {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.search-trigger .search-icon {
		width: 18px;
		height: 18px;
		color: #133331;
		stroke-width: 2;
	}
	
	body.dark .search-trigger .search-icon {
		color: #cbd8ac;
	}
	
	/* Cacher le texte et raccourci sur les écrans moyens */
	.search-trigger .search-placeholder,
	.search-shortcut {
		display: none;
	}
	
	/* Login Link Desktop */
	.login-link {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0.75rem;
		background: #133331;
		color: white;
		text-decoration: none;
		border-radius: 0.5rem;
		transition: 0.3s ease;
		width: 44px;
		height: 44px;
	}
	
	.login-link:hover {
		background: #0f2826;
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(19, 51, 49, 0.3);
	}
	
	body.dark .login-link {
		background: #cbd8ac;
		color: #133331;
	}
	
	body.dark .login-link:hover {
		background: #b8c794;
	}
	
	.user-icon {
		font-size: 1.125rem;
	}

	.mobile-toggle {
		display: none !important;
	}

	.breadcrumb {
		padding: 1.5rem 0;
	}
	
	.breadcrumb ol {
		padding: 0;
		margin: 0 auto;
	}

	/******************** Grid ********************/

	.container {
		max-width: 960px;
		padding: 0 32px;
	}
	.container-fluid {
		padding: 0 32px;
	}
	
	.col-lg { flex: 1 0 0%; }
	.col-lg-auto { flex: 0 0 auto; width: auto; }
	.col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
	.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
	.col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-lg-9 { flex: 0 0 75%; max-width: 75%; }
	.col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* === EXTRA LARGE - 1200px+ === */
@media (min-width: 1200px) {

	.header-container {
		gap: 2rem;
		padding: 0 2rem;
	}

	.brand {
		font-size: 1.625rem;
		gap: 1rem;
	}
	
	.brand-logo {
		width: 44px;
		height: 44px;
	}

	.main-nav {
		max-width: 800px;
	}
	
	.nav-item {
		margin-right: 0.5rem;
	}
	
	.nav-link {
		padding: 0.75rem 1rem !important;
		font-size: 0.95rem !important;
	}

	.search-trigger {
		width: auto;
		min-width: 220px;
		max-width: 300px;
		padding: 0.75rem 1rem;
		gap: 0.75rem;
		justify-content: flex-start;
	}
	
	.search-trigger-content {
		gap: 0.75rem;
		flex: 1;
		justify-content: flex-start;
	}
	
	.search-trigger .search-placeholder,
	.search-shortcut {
		display: block;
	}
	
	.search-trigger .search-placeholder {
		color: #525252;
		font-size: 0.9rem;
	}
	
	body.dark .search-trigger .search-placeholder {
		color: rgba(255, 255, 255, 0.7);
	}
	
	.search-shortcut {
		background: rgba(0, 0, 0, 0.1);
		padding: 0.25rem 0.5rem;
		border-radius: 0.25rem;
		font-family: monospace;
		font-size: 0.75rem;
		color: #525252;
	}
	
	body.dark .search-shortcut {
		background: rgba(255, 255, 255, 0.1);
		color: rgba(255, 255, 255, 0.7);
	}
	
	.header-right {
		gap: 1rem;
	}

	/******************** Grid ********************/

	.container {
		max-width: 1140px;
		padding: 0 40px;
	}
	.container-fluid {
		padding: 0 40px;
	}
	
	.col-xl { flex: 1 0 0%; }
	.col-xl-auto { flex: 0 0 auto; width: auto; }
	.col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-xl-3 { flex: 0 0 25%; max-width: 25%; }
	.col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-xl-6 { flex: 0 0 50%; max-width: 50%; }
	.col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-xl-9 { flex: 0 0 75%; max-width: 75%; }
	.col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* === EXTRA EXTRA LARGE - 1400px+ === */
@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
		padding: 0 48px;
	}
	.container-fluid {
		padding: 0 48px;
	}
	
	.col-xxl { flex: 1 0 0%; }
	.col-xxl-auto { flex: 0 0 auto; width: auto; }
	.col-xxl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-xxl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-xxl-3 { flex: 0 0 25%; max-width: 25%; }
	.col-xxl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-xxl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-xxl-6 { flex: 0 0 50%; max-width: 50%; }
	.col-xxl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-xxl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-xxl-9 { flex: 0 0 75%; max-width: 75%; }
	.col-xxl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-xxl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-xxl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* ============================================
   pages.css — Extension de style.css
   Recoleta Bold + Plus Jakarta Sans
   #133331, #cbd8ac, #f9d87f
   Grille existante .container/.row/.col-*
   
   Inclure APRÈS style.css dans le layout.
   ============================================ */


/* ============================================
   UTILITAIRES
   ============================================ */

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

a { color: #133331; text-decoration: none; transition: 0.3s ease; }
a:hover { color: #0f2826; }
body.dark a { color: #cbd8ac; }
body.dark a:hover { color: #fff; }

.section-block { padding: 3rem 0; }
@media (min-width: 768px) { .section-block { padding: 4rem 0; } }

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn--full { width: 100%; }


/* ============================================
   READING PROGRESS BAR
   ============================================ */

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #cbd8ac, #f9d87f);
  width: 0%;
  z-index: 200;
  transition: width 0.1s linear;
  pointer-events: none;
}


/* ============================================
   ARTICLE HERO
   ============================================ */

.article-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  overflow: hidden;
  margin-bottom: 3.5rem;
}

.article-hero__bg { position: absolute; inset: 0; }

.article-hero__bg-img { width: 100%; height: 100%; object-fit: cover; }

.article-hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(19, 51, 49, 0.95) 0%,
    rgba(19, 51, 49, 0.65) 40%,
    rgba(19, 51, 49, 0.25) 100%
  );
}

.article-hero__content { position: relative; z-index: 2; color: #fff; }

.article-hero__cat {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem; border-radius: 100px;
  background: rgba(203, 216, 172, 0.2);
  color: #cbd8ac;
  border: 1px solid rgba(203, 216, 172, 0.3);
  margin-bottom: 1rem;
  text-decoration: none;
  backdrop-filter: blur(8px);
}
.article-hero__cat:hover { background: rgba(203, 216, 172, 0.35); color: #fff; }

.article-hero__title {
  font-family: 'recoletabold';
  font-size: calc(1.5rem + 1.5vw);
  line-height: 1.12;
  margin-bottom: 0.75rem;
  color: #fff;
  max-width: 780px;
}

.article-hero__lead {
  font-size: 1.1rem; line-height: 1.65;
  opacity: 0.85; max-width: 620px; margin-bottom: 0;
}

@media (min-width: 768px) {
  .article-hero { 
  	min-height: 480px; 
  	padding-bottom: 3.5rem;
  }
}


/* ============================================
   ARTICLE LAYOUT — TOC Rail + Main
   ============================================ */

/* ============================================
   ARTICLE LAYOUT — grille TOC + contenu
   ============================================ */

.article-with-toc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

@media (min-width: 1080px) {
  .article-with-toc {
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    max-width: 1100px;
  }
}


/* ============================================
   TOC — un seul élément, deux présentations
   Mobile  : bloc inline avant le contenu
   Desktop : rail sticky dans la colonne gauche
   ============================================ */

.toc__inner {
  background: rgba(203, 216, 172, 0.08);
  border: 1px solid rgba(203, 216, 172, 0.22);
  border-left: 3px solid #f9d87f;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

body.dark .toc__inner {
  background: rgba(203, 216, 172, 0.04);
  border-color: rgba(203, 216, 172, 0.12);
  border-left-color: #f9d87f;
}

/* ── Header / toggle (visible sur mobile, label seul sur desktop) ── */
.toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.5rem;
}

.toc__label {
  font-family: 'recoletabold', serif;
  font-size: 0.95rem;
  color: #133331;
  line-height: 1;
}
body.dark .toc__label { color: #cbd8ac; }

.toc__chevron {
  font-size: 1rem;
  color: #999;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.toc__toggle[aria-expanded="false"] .toc__chevron {
  transform: rotate(-90deg);
}

/* ── Liste ── */
.toc__list {
  list-style: none;
  counter-reset: toc;
  margin: 0;
  padding: 0 0 0.75rem;
}

.toc__list li {
  counter-increment: toc;
}

.toc__link {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.87rem;
  line-height: 1.4;
  color: #525252;
  text-decoration: none;
  padding: 0.28rem 1.1rem;
  transition: color 0.2s ease;
}

.toc__link::before {
  content: counter(toc, decimal-leading-zero) '.';
  font-size: 0.72rem;
  font-weight: 700;
  color: #f9d87f;
  min-width: 22px;
  flex-shrink: 0;
}

.toc__link:hover { color: #133331; }

body.dark .toc__link { color: rgba(255,255,255,0.65); }
body.dark .toc__link:hover { color: #cbd8ac; }


/* ── Desktop : rail sticky ── */
@media (min-width: 1080px) {

  .toc {
    align-self: start;
    position: sticky;          /* ← ici, pas sur __inner */
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(203, 216, 172, 0.2) transparent;
    top: 120px;
  }

  .toc__inner {
    /* Plus de sticky ici */
    position: static;
    margin-bottom: 0;
    background: transparent;
    border: none;
    border-left: 2px solid rgba(203, 216, 172, 0.25);
    border-radius: 0;
    max-height: none;
    overflow-y: visible;
  }

  body.dark .toc__inner {
    background: transparent;
    border-color: rgba(203, 216, 172, 0.1);
  }

  /* Cacher le chevron sur desktop, le toggle devient non-interactif */
  .toc__toggle {
    cursor: default;
    pointer-events: none;
    padding: 0 0.75rem 0.6rem;
  }

  .toc__chevron { display: none; }

  .toc__label {
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
  }

  /* Toujours visible sur desktop */
  .toc__list {
    padding-bottom: 0;
    display: block !important; /* override du display:none du toggle mobile */
  }

  .toc__link {
    font-size: 0.82rem;
    padding: 0.38rem 0.75rem;
    border-left: 2px solid transparent;
    margin-left: -2px;
    gap: 0.4rem;
  }

  .toc__link::before {
    display: none; /* pas de numéros sur desktop */
  }

  .toc__link:hover {
    border-left-color: rgba(203, 216, 172, 0.4);
    color: #133331;
  }

  .toc__link--active {
    color: #133331;
    font-weight: 600;
    border-left-color: #f9d87f;
  }

  body.dark .toc__link--active { color: #cbd8ac; border-left-color: #f9d87f; }
  body.dark .toc__link:hover   { color: #cbd8ac; }
}

/* ── Print / très petit écran : masquer le TOC ── */
@media print, (max-width: 359px) {
  .toc { display: none !important; }
}
/* ============================================
   ARTICLE MAIN
   ============================================ */

.article-main {
  max-width: 760px;
  min-width: 0;
}


/* ============================================
   BYLINE
   ============================================ */

.byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(19, 51, 49, 0.08);
}
body.dark .byline { border-bottom-color: rgba(203, 216, 172, 0.12); }

.byline__avatar { border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.byline__name {
  font-weight: 600; font-size: 0.95rem;
  color: #133331; display: block;
}
body.dark .byline__name { color: #cbd8ac; }

.byline__details { font-size: 0.82rem; color: #999; display: block; }


/* ============================================
   PROSE
   ============================================ */

.prose > *:first-child { margin-top: 0; }

.prose__intro {
  font-size: 1.15rem; line-height: 1.75;
  color: #333; margin-bottom: 2rem;
}
body.dark .prose__intro { color: rgba(255, 255, 255, 0.85); }

.prose h2 {
  font-family: 'recoletabold';
  font-size: calc(1.2rem + 0.4vw);
  line-height: 1.25;
  margin: 3rem 0 1rem;
  padding-top: 1rem;
  color: #000;
  scroll-margin-top: 100px;
}
body.dark .prose h2 { color: #fff; }

.prose h3 {
  font-family: 'recoletabold';
  font-size: 1.12rem;
  margin: 2rem 0 0.75rem;
  color: #133331;
}
body.dark .prose h3 { color: #cbd8ac; }

.prose p {
  font-size: 1.05rem; line-height: 1.8;
  color: #525252; margin-bottom: 1.25rem;
}
body.dark .prose p { color: rgba(255, 255, 255, 0.8); }

.prose strong { color: #133331; }
body.dark .prose strong { color: #fff; }

.prose ul,
.prose ol {
  margin: 1.25rem 0; padding-left: 1.25rem;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  font-size: 1rem; line-height: 1.75;
  color: #525252; margin-bottom: 0.6rem;
  padding-left: 0.25rem;
}
body.dark .prose li { color: rgba(255, 255, 255, 0.8); }
.prose li strong { color: #133331; }
body.dark .prose li strong { color: #fff; }

.article-figure {
  margin: 2.5rem -1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.article-figure img { width: 100%; display: block; }
.article-figure figcaption {
  font-size: 0.82rem; color: #999;
  text-align: center; padding: 0.75rem 1.5rem 0;
  font-style: italic; line-height: 1.5;
}
@media (max-width: 600px) {
  .article-figure { margin-left: -16px; margin-right: -16px; border-radius: 0; }
}


/* ============================================
   TABLE
   ============================================ */

.table-wrap {
  overflow-x: auto; margin: 1.75rem 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(19, 51, 49, 0.08);
}
body.dark .table-wrap { border-color: rgba(203, 216, 172, 0.1); }

.table-styled { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

.table-styled th {
  text-align: left; padding: 0.75rem 1rem;
  background: #133331; color: #fff;
  font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap;
}

.table-styled td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
  color: #525252; line-height: 1.5;
}
body.dark .table-styled td { border-bottom-color: rgba(203, 216, 172, 0.08); color: rgba(255, 255, 255, 0.8); }

.table-styled tbody tr { transition: background 0.2s ease; }
.table-styled tbody tr:hover { background: rgba(203, 216, 172, 0.06); }

.table-styled td strong { color: #133331; }
body.dark .table-styled td strong { color: #fff; }


/* ============================================
   BLOC : CONSEIL DE TOM
   ============================================ */

.bloc-conseil {
  background: rgba(203, 216, 172, 0.1);
  border: 1px solid rgba(203, 216, 172, 0.25);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 2rem 0;
}
body.dark .bloc-conseil {
  background: rgba(203, 216, 172, 0.05);
  border-color: rgba(203, 216, 172, 0.12);
}

.bloc-conseil__header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(203, 216, 172, 0.2);
}
body.dark .bloc-conseil__header { border-bottom-color: rgba(203, 216, 172, 0.1); }

.bloc-conseil__avatar {
  border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(203, 216, 172, 0.4);
}

.bloc-conseil__name {
  display: block; font-family: 'recoletabold';
  font-size: 0.95rem; color: #133331;
}
body.dark .bloc-conseil__name { color: #cbd8ac; }

.bloc-conseil__subtitle { display: block; font-size: 0.78rem; color: #999; }

.bloc-conseil__body p {
  font-size: 0.98rem; line-height: 1.7;
  color: #525252; margin-bottom: 0; font-style: italic;
}
body.dark .bloc-conseil__body p { color: rgba(255, 255, 255, 0.8); }


/* ============================================
   BLOC : CHIFFRE CLÉ
   ============================================ */

.bloc-chiffre {
  text-align: center;
  padding: 2rem 1.5rem;
  margin: 2.5rem 0;
  border-top: 1px solid rgba(19, 51, 49, 0.08);
  border-bottom: 1px solid rgba(19, 51, 49, 0.08);
}
body.dark .bloc-chiffre {
  border-color: rgba(203, 216, 172, 0.1);
}

.bloc-chiffre__number {
  display: block;
  font-family: 'recoletabold';
  font-size: 3rem;
  line-height: 1;
  color: #133331;
  margin-bottom: 0.35rem;
}
body.dark .bloc-chiffre__number { color: #cbd8ac; }

.bloc-chiffre__label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #133331;
  margin-bottom: 0.35rem;
}
body.dark .bloc-chiffre__label { color: #fff; }

.bloc-chiffre__context {
  display: block;
  font-size: 0.88rem;
  color: #999;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.5;
}


/* ============================================
   BLOC : CHECKLIST
   ============================================ */

.bloc-checklist {
  margin: 1.75rem 0;
  padding: 1.5rem;
  background: rgba(19, 51, 49, 0.02);
  border: 1px solid rgba(19, 51, 49, 0.06);
  border-radius: 0.75rem;
}
body.dark .bloc-checklist {
  background: rgba(203, 216, 172, 0.03);
  border-color: rgba(203, 216, 172, 0.08);
}

.bloc-checklist__title {
  font-family: 'recoletabold';
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #133331;
}
body.dark .bloc-checklist__title { color: #cbd8ac; }

.bloc-checklist__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bloc-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(19, 51, 49, 0.04);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #525252;
}
.bloc-checklist__item:last-child { border-bottom: none; }
body.dark .bloc-checklist__item {
  border-bottom-color: rgba(203, 216, 172, 0.06);
  color: rgba(255, 255, 255, 0.8);
}

.bloc-checklist__check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid rgba(203, 216, 172, 0.5);
  border-radius: 4px;
  margin-top: 3px;
  position: relative;
  background: rgba(203, 216, 172, 0.08);
}
.bloc-checklist__check::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 8px; height: 12px;
  border: solid #cbd8ac;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0.5;
}
body.dark .bloc-checklist__check {
  border-color: rgba(203, 216, 172, 0.3);
  background: rgba(203, 216, 172, 0.05);
}

.bloc-checklist__item strong { color: #133331; }
body.dark .bloc-checklist__item strong { color: #fff; }


/* ============================================
   BLOC : PRODUIT RECOMMANDÉ
   ============================================ */

.bloc-produit {
  margin: 2rem 0;
  border: 1px solid rgba(19, 51, 49, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.bloc-produit:hover {
  box-shadow: 0 8px 24px rgba(19, 51, 49, 0.06);
}
body.dark .bloc-produit { border-color: rgba(203, 216, 172, 0.1); }

.bloc-produit__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
}

@media (max-width: 560px) {
  .bloc-produit__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.bloc-produit__img {
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #f4f2ee;
}
body.dark .bloc-produit__img { background: rgba(19, 51, 49, 0.3); }

.bloc-produit__body { flex: 1; }

.bloc-produit__eyebrow {
  display: block;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #f9d87f;
  margin-bottom: 0.2rem;
}

.bloc-produit__name {
  display: block;
  font-family: 'recoletabold';
  font-size: 1rem;
  line-height: 1.3;
  color: #133331;
  margin-bottom: 0.3rem;
}
body.dark .bloc-produit__name { color: #fff; }

.bloc-produit__desc {
  font-size: 0.88rem; color: #999;
  line-height: 1.5; margin-bottom: 0.35rem;
}

.bloc-produit__price {
  font-weight: 700;
  font-size: 0.95rem;
  color: #133331;
}
body.dark .bloc-produit__price { color: #cbd8ac; }


/* ============================================
   BLOC : ATTENTION / AVERTISSEMENT
   ============================================ */

.bloc-attention {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0.75rem;
  background: rgba(200, 80, 50, 0.04);
  border: 1px solid rgba(200, 80, 50, 0.15);
  border-left: 4px solid #c85032;
}
body.dark .bloc-attention {
  background: rgba(200, 80, 50, 0.06);
  border-color: rgba(200, 80, 50, 0.2);
  border-left-color: #e8734f;
}

.bloc-attention__icon {
  flex-shrink: 0;
  color: #c85032;
  margin-top: 2px;
}
body.dark .bloc-attention__icon { color: #e8734f; }

.bloc-attention__title {
  display: block;
  font-family: 'recoletabold';
  font-size: 0.98rem;
  color: #c85032;
  margin-bottom: 0.35rem;
}
body.dark .bloc-attention__title { color: #e8734f; }

.bloc-attention__body p {
  font-size: 0.92rem; line-height: 1.65;
  color: #525252; margin-bottom: 0;
}
body.dark .bloc-attention__body p { color: rgba(255, 255, 255, 0.75); }


/* ============================================
   BLOC : AVANT / APRÈS
   ============================================ */

.bloc-avant-apres {
  margin: 2.5rem 0;
}

.bloc-avant-apres__title {
  font-family: 'recoletabold';
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 1.25rem;
  color: #000;
}
body.dark .bloc-avant-apres__title { color: #fff; }

.bloc-avant-apres__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .bloc-avant-apres__grid { grid-template-columns: 1fr; }
}

.bloc-avant-apres__col {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(19, 51, 49, 0.06);
}

.bloc-avant-apres__col--avant {
  border-color: rgba(200, 80, 50, 0.15);
}
.bloc-avant-apres__col--apres {
  border-color: rgba(61, 122, 62, 0.15);
}

body.dark .bloc-avant-apres__col--avant { border-color: rgba(200, 80, 50, 0.2); }
body.dark .bloc-avant-apres__col--apres { border-color: rgba(203, 216, 172, 0.2); }

.bloc-avant-apres__badge {
  display: inline-block;
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  z-index: 1;
}

.bloc-avant-apres__badge--avant {
  background: rgba(200, 80, 50, 0.9);
  color: #fff;
}
.bloc-avant-apres__badge--apres {
  background: rgba(61, 122, 62, 0.9);
  color: #fff;
}

.bloc-avant-apres__col {
  position: relative;
}

.bloc-avant-apres__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bloc-avant-apres__desc {
  padding: 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #525252;
  margin: 0;
}
body.dark .bloc-avant-apres__desc { color: rgba(255, 255, 255, 0.75); }
.bloc-avant-apres__desc strong { color: #133331; }
body.dark .bloc-avant-apres__desc strong { color: #fff; }


/* ============================================
   BLOC : SUGGESTION (article, recette, plante)
   ============================================ */

.bloc-suggestion {
  border-radius: 0.75rem;
  margin: 2rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bloc-suggestion:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(19, 51, 49, 0.06);
}

.bloc-suggestion__inner {
  display: flex; align-items: center;
  gap: 1.25rem; padding: 1.25rem;
}
@media (max-width: 560px) {
  .bloc-suggestion__inner { flex-direction: column; align-items: flex-start; }
}

.bloc-suggestion__img {
  border-radius: 0.5rem; object-fit: cover; flex-shrink: 0;
}

.bloc-suggestion__body { flex: 1; }

.bloc-suggestion__eyebrow {
  display: block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.bloc-suggestion__title {
  font-family: 'recoletabold';
  font-size: 1rem; line-height: 1.3;
  display: block; margin-bottom: 0.25rem;
  color: #133331; text-decoration: none;
}
.bloc-suggestion__title:hover { color: #0f2826; }
body.dark .bloc-suggestion__title { color: #cbd8ac; }
body.dark .bloc-suggestion__title:hover { color: #fff; }

.bloc-suggestion__desc {
  font-size: 0.85rem; color: #999;
  line-height: 1.5; margin-bottom: 0;
}

.bloc-suggestion--plant .bloc-suggestion__eyebrow { color: #3d7a3e; }
.bloc-suggestion--article .bloc-suggestion__eyebrow { color: #133331; }
.bloc-suggestion--recipe .bloc-suggestion__eyebrow { color: #f9d87f; }
body.dark .bloc-suggestion--plant .bloc-suggestion__eyebrow,
body.dark .bloc-suggestion--article .bloc-suggestion__eyebrow { color: #cbd8ac; }

.bloc-suggestion--plant {
  background: rgba(61, 122, 62, 0.04);
  border: 1px solid rgba(61, 122, 62, 0.12);
}
body.dark .bloc-suggestion--plant {
  background: rgba(203, 216, 172, 0.04);
  border-color: rgba(203, 216, 172, 0.1);
}

.bloc-suggestion--article {
  background: rgba(19, 51, 49, 0.03);
  border: 1px solid rgba(19, 51, 49, 0.08);
}
body.dark .bloc-suggestion--article {
  background: rgba(203, 216, 172, 0.03);
  border-color: rgba(203, 216, 172, 0.08);
}

.bloc-suggestion--recipe {
  background: rgba(249, 216, 127, 0.06);
  border: 1px solid rgba(249, 216, 127, 0.2);
}
body.dark .bloc-suggestion--recipe {
  background: rgba(249, 216, 127, 0.04);
  border-color: rgba(249, 216, 127, 0.12);
}


/* ============================================
   BLOC : VIDÉO
   ============================================ */

.bloc-video { margin: 2.5rem 0; }
.bloc-video__embed { border-radius: 0.75rem; overflow: hidden; }
.bloc-video__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.bloc-video__caption {
  font-size: 0.82rem; color: #999;
  text-align: center; padding-top: 0.6rem;
  font-style: italic; margin-bottom: 0;
}


/* ============================================
   BLOC : NEWSLETTER (inline)
   ============================================ */

.bloc-newsletter {
  background: #133331;
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .bloc-newsletter {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 2rem 2.5rem;
  }
}

.bloc-newsletter__title {
  font-family: 'recoletabold';
  font-size: 1.2rem; color: #fff;
  display: block; margin-bottom: 0.35rem;
}
.bloc-newsletter__desc {
  font-size: 0.9rem; color: rgba(255, 255, 255, 0.7);
  line-height: 1.55; margin-bottom: 0;
}

.bloc-newsletter__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem; margin-bottom: 0.5rem;
}
@media (max-width: 400px) {
  .bloc-newsletter__fields { grid-template-columns: 1fr; }
}

.bloc-newsletter .form-control {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.bloc-newsletter .form-control::placeholder { color: rgba(255, 255, 255, 0.4); }
.bloc-newsletter .form-control:focus {
  border-color: #cbd8ac;
  box-shadow: 0 0 0 3px rgba(203, 216, 172, 0.2);
}

.bloc-newsletter__btn { width: 100%; }
.bloc-newsletter__note {
  display: block; text-align: center;
  font-size: 0.72rem; color: rgba(255, 255, 255, 0.4);
  margin-top: 0.4rem;
}


/* ============================================
   BLOC : LEAD MAGNET
   ============================================ */

.bloc-leadmagnet {
  background: linear-gradient(135deg, #133331 0%, #0a1f1e 100%);
  border-radius: 1rem;
  padding: 2.5rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 640px) {
  .bloc-leadmagnet {
    grid-template-columns: auto 1fr;
    padding: 2.5rem 3rem;
  }
}

.bloc-leadmagnet::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 216, 172, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bloc-leadmagnet__visual {
  display: flex; align-items: center; justify-content: center;
}
.bloc-leadmagnet__img {
  border-radius: 0.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  max-width: 200px; width: 100%;
}
@media (min-width: 640px) { .bloc-leadmagnet__img { max-width: 180px; } }

.bloc-leadmagnet__content { position: relative; z-index: 1; }

.bloc-leadmagnet__eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #f9d87f;
  background: rgba(249, 216, 127, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.bloc-leadmagnet__title {
  font-family: 'recoletabold';
  font-size: 1.35rem; color: #fff;
  margin-bottom: 0.5rem;
}

.bloc-leadmagnet__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6; margin-bottom: 1rem;
}

.bloc-leadmagnet__features {
  list-style: none; padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}
.bloc-leadmagnet__features li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 1.25rem;
  position: relative;
}
.bloc-leadmagnet__features li::before {
  content: '✓'; position: absolute; left: 0;
  color: #cbd8ac; font-weight: 700;
}

.bloc-leadmagnet__form {
  display: flex; flex-direction: column;
  gap: 0.5rem; max-width: 340px;
}
.bloc-leadmagnet .form-control {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff; padding: 0.7rem 1rem;
}
.bloc-leadmagnet .form-control::placeholder { color: rgba(255, 255, 255, 0.4); }
.bloc-leadmagnet .form-control:focus {
  border-color: #cbd8ac;
  box-shadow: 0 0 0 3px rgba(203, 216, 172, 0.2);
}
.bloc-leadmagnet__note {
  display: block; font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.3rem;
}


/* ============================================
   FAQ
   ============================================ */

.faq-list { margin-top: 1rem; }

.faq-item {
  border-bottom: 1px solid rgba(19, 51, 49, 0.08);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: none; }
body.dark .faq-item { border-bottom-color: rgba(203, 216, 172, 0.1); }

.faq-item__question {
  font-family: 'recoletabold';
  font-size: 1.05rem; line-height: 1.35;
  margin-bottom: 0.5rem; color: #133331;
}
body.dark .faq-item__question { color: #cbd8ac; }

.faq-item__answer p {
  font-size: 0.95rem; line-height: 1.7;
  color: #525252; margin-bottom: 0;
}
body.dark .faq-item__answer p { color: rgba(255, 255, 255, 0.75); }


/* ============================================
   ARTICLE FOOTER
   ============================================ */

.article-footer {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(19, 51, 49, 0.08);
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; gap: 1rem;
}
body.dark .article-footer { border-top-color: rgba(203, 216, 172, 0.12); }

.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tag-pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
  background: rgba(19, 51, 49, 0.04);
  color: #525252;
  text-decoration: none;
  transition: 0.3s ease;
  border: 1px solid rgba(19, 51, 49, 0.06);
}
.tag-pill:hover { background: #133331; color: #fff; border-color: #133331; }
body.dark .tag-pill { background: rgba(203, 216, 172, 0.06); color: rgba(255, 255, 255, 0.7); border-color: rgba(203, 216, 172, 0.1); }
body.dark .tag-pill:hover { background: #cbd8ac; color: #133331; border-color: #cbd8ac; }

.article-share { display: flex; align-items: center; gap: 0.5rem; }

.article-share__label {
  font-size: 0.82rem; font-weight: 500;
  color: #999; margin-right: 0.25rem;
}

.article-share__btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(19, 51, 49, 0.04);
  color: #525252;
  border: 1px solid rgba(19, 51, 49, 0.06);
  cursor: pointer; transition: 0.3s ease;
  text-decoration: none;
}
.article-share__btn:hover { background: #133331; color: #fff; border-color: #133331; }
body.dark .article-share__btn { background: rgba(203, 216, 172, 0.06); color: #cbd8ac; border-color: rgba(203, 216, 172, 0.1); }
body.dark .article-share__btn:hover { background: #cbd8ac; color: #133331; }


/* ============================================
   AUTHOR BIO
   ============================================ */

.author-bio {
  display: flex; gap: 1.25rem;
  margin-top: 2.5rem; padding: 2rem;
  background: rgba(19, 51, 49, 0.03);
  border: 1px solid rgba(19, 51, 49, 0.06);
  border-radius: 0.75rem;
}
body.dark .author-bio {
  background: rgba(203, 216, 172, 0.04);
  border-color: rgba(203, 216, 172, 0.1);
}
@media (max-width: 560px) {
  .author-bio { flex-direction: column; text-align: center; }
}

.author-bio__img {
  border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(203, 216, 172, 0.3);
}

.author-bio__name {
  font-family: 'recoletabold';
  font-size: 1.1rem;
  display: block; margin-bottom: 0.35rem;
  color: #133331;
}
body.dark .author-bio__name { color: #cbd8ac; }

.author-bio__text {
  font-size: 0.92rem; line-height: 1.65;
  color: #525252; margin-bottom: 0.75rem;
}
body.dark .author-bio__text { color: rgba(255, 255, 255, 0.75); }

.author-bio__links { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 560px) { .author-bio__links { justify-content: center; } }

.author-bio__links a {
  font-size: 0.82rem; font-weight: 600;
  color: #133331; text-decoration: none;
}
.author-bio__links a:hover { color: #f9d87f; }
body.dark .author-bio__links a { color: #cbd8ac; }
body.dark .author-bio__links a:hover { color: #f9d87f; }


/* ============================================
   SUGGESTIONS GRID
   ============================================ */

.bloc-suggestions-grid {
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(19, 51, 49, 0.08);
}
body.dark .bloc-suggestions-grid { border-top-color: rgba(203, 216, 172, 0.1); }

.bloc-suggestions-grid__title {
  font-family: 'recoletabold';
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #000;
}
body.dark .bloc-suggestions-grid__title { color: #fff; }

.card-suggestion {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(19, 51, 49, 0.06);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}
.card-suggestion:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(19, 51, 49, 0.08);
}
body.dark .card-suggestion {
  background: rgba(19, 51, 49, 0.5);
  border-color: rgba(203, 216, 172, 0.1);
}

.card-suggestion__img {
  width: 100%; aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-suggestion:hover .card-suggestion__img { transform: scale(1.04); }

.card-suggestion__body { padding: 1rem 1.25rem 1.25rem; }

.card-suggestion__cat {
  display: block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #f9d87f; margin-bottom: 0.3rem;
}

.card-suggestion__title {
  font-family: 'recoletabold';
  font-size: 1rem; line-height: 1.3;
  color: #133331; display: block;
}
body.dark .card-suggestion__title { color: #fff; }


/* ============================================
   COMMENTS — Hierarchical
   ============================================ */

.comments-section {
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(19, 51, 49, 0.08);
}
body.dark .comments-section { border-top-color: rgba(203, 216, 172, 0.1); }

.comments-section__title {
  font-family: 'recoletabold';
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #000;
}
body.dark .comments-section__title { color: #fff; }

.comments-section__count {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400; font-size: 0.88rem; color: #999;
}

.comment {
  display: flex; gap: 0.75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(19, 51, 49, 0.05);
}
.comment:last-of-type { border-bottom: none; }
body.dark .comment { border-bottom-color: rgba(203, 216, 172, 0.06); }

/* Reply level */
.comment--reply {
  margin-top: 1rem;
  margin-left: 0;
  padding: 1rem;
  background: rgba(19, 51, 49, 0.02);
  border-radius: 0.5rem;
  border-bottom: none;
  border-left: 2px solid rgba(203, 216, 172, 0.3);
}
body.dark .comment--reply {
  background: rgba(203, 216, 172, 0.03);
  border-left-color: rgba(203, 216, 172, 0.15);
}

.comment__avatar { border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.comment__header {
  display: flex; align-items: baseline;
  gap: 0.6rem; margin-bottom: 0.3rem;
}

.comment__author { font-size: 0.9rem; color: #133331; }
body.dark .comment__author { color: #fff; }

.comment__author--op {
  color: #133331;
  background: rgba(203, 216, 172, 0.2);
  padding: 0.1rem 0.5rem;
  border-radius: 100px;
  font-size: 0.82rem;
}
body.dark .comment__author--op {
  color: #cbd8ac;
  background: rgba(203, 216, 172, 0.1);
}

.comment__date { font-size: 0.75rem; color: #999; }

.comment__text {
  font-size: 0.92rem; line-height: 1.65;
  color: #525252; margin-bottom: 0.4rem;
}
body.dark .comment__text { color: rgba(255, 255, 255, 0.7); }

.comment__reply-btn {
  background: none; border: none;
  font-size: 0.78rem; font-weight: 600;
  color: #999; cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.comment__reply-btn:hover { color: #133331; }
body.dark .comment__reply-btn:hover { color: #cbd8ac; }

.comment-form {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(19, 51, 49, 0.05);
}
body.dark .comment-form { border-top-color: rgba(203, 216, 172, 0.06); }

.comment-form__title {
  font-family: 'recoletabold';
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #133331;
}
body.dark .comment-form__title { color: #cbd8ac; }

.comment-form .form-control { margin-bottom: 0.75rem; }


/* ============================================
   PAGE HERO (index pages)
   ============================================ */

.page-hero {
  position: relative;
  background: #133331;
  color: #fff;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

.page-hero__eyebrow {
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #cbd8ac;
  margin-bottom: 1rem;
  display: block;
}

.page-hero__title {
  font-family: 'recoletabold';
  font-size: calc(2rem + 2vw);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
  max-width: 700px;
}

.page-hero__desc {
  font-size: 1.125rem; line-height: 1.65;
  opacity: 0.8; max-width: 540px; margin-bottom: 0;
}

.page-hero__pattern {
  position: absolute; top: -20%; right: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 216, 172, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 992px) {
  .page-hero { padding: 5rem 0 4.5rem; }
  .page-hero__title { font-size: calc(2.5rem + 1.5vw); }
}


/* ============================================
   SECTION LABEL
   ============================================ */

.section-label {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 1rem;
}
body.dark .section-label { color: rgba(255, 255, 255, 0.4); }


/* ============================================
   CARD FEATURED — Horizontal hero card
   ============================================ */

.card-featured {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(19, 51, 49, 0.06);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(19, 51, 49, 0.1);
}
body.dark .card-featured {
  background: rgba(19, 51, 49, 0.5);
  border-color: rgba(203, 216, 172, 0.1);
}
body.dark .card-featured:hover { box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3); }

@media (min-width: 768px) {
  .card-featured { grid-template-columns: 1fr 1fr; }
}

.card-featured__image-wrap {
  overflow: hidden;
  min-height: 260px;
}

.card-featured__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-featured:hover .card-featured__img { transform: scale(1.04); }

.card-featured__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .card-featured__body { padding: 2.5rem; }
}

.card-featured__cat {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #f9d87f;
  margin-bottom: 0.6rem;
}

.card-featured__title {
  font-family: 'recoletabold';
  font-size: calc(1.2rem + 0.5vw);
  line-height: 1.2;
  color: #000;
  margin-bottom: 0.75rem;
}
body.dark .card-featured__title { color: #fff; }

.card-featured__excerpt {
  font-size: 1rem; line-height: 1.7;
  color: #525252;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.dark .card-featured__excerpt { color: rgba(255, 255, 255, 0.7); }

.card-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.card-featured__author {
  display: flex; align-items: center;
  gap: 0.5rem; font-weight: 600;
  font-size: 0.88rem; color: #133331;
}
body.dark .card-featured__author { color: #cbd8ac; }

.card-featured__avatar {
  border-radius: 50%; object-fit: cover;
}

.card-featured__meta {
  font-size: 0.82rem; color: #999;
}


/* ============================================
   FILTERS BAR
   ============================================ */

.filters-bar {
  border-bottom: 1px solid rgba(19, 51, 49, 0.08);
  background: #fff;
  position: sticky;
  top: 103px;
  z-index: 50;
  transition: 0.3s ease;
}
body.dark .filters-bar {
  background: #0a1f1e;
  border-bottom-color: rgba(203, 216, 172, 0.1);
}

.filters-bar__inner {
  display: flex; align-items: center;
  gap: 0.6rem; padding: 0.75rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filters-bar__inner::-webkit-scrollbar { display: none; }

.filter-chip {
  display: inline-block;
  padding: 0.45rem 1.15rem;
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  border: 1px solid rgba(19, 51, 49, 0.12);
  color: #525252;
  background: transparent;
  white-space: nowrap;
  transition: 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.filter-chip:hover {
  border-color: #133331;
  color: #133331;
  background: rgba(19, 51, 49, 0.03);
}

.filter-chip--active {
  background: #133331; color: #fff;
  border-color: #133331;
}
.filter-chip--active:hover { background: #0f2826; color: #fff; }

body.dark .filter-chip {
  border-color: rgba(203, 216, 172, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
body.dark .filter-chip:hover {
  border-color: #cbd8ac; color: #cbd8ac;
  background: rgba(203, 216, 172, 0.08);
}
body.dark .filter-chip--active {
  background: #cbd8ac; color: #133331;
  border-color: #cbd8ac;
}


/* ============================================
   CARDS — Standard (index grids)
   ============================================ */

.card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(19, 51, 49, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 1.5rem;
  height: calc(100% - 1.5rem);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(19, 51, 49, 0.1);
}
body.dark .card {
  background: rgba(19, 51, 49, 0.5);
  border-color: rgba(203, 216, 172, 0.1);
}
body.dark .card:hover { box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3); }

.card__image-wrap {
  display: block; overflow: hidden;
  position: relative; flex-shrink: 0;
}

.card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .card__img { transform: scale(1.05); }

.card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__meta {
  display: flex; align-items: center;
  gap: 0.5rem; font-size: 0.8rem;
  color: #999; margin-bottom: 0.5rem;
}

.card__cat {
  font-weight: 600; text-transform: uppercase;
  font-size: 0.72rem; letter-spacing: 0.05em;
  color: #133331; text-decoration: none;
}
body.dark .card__cat { color: #cbd8ac; }

.card__title {
  font-family: 'recoletabold';
  font-size: 1.1rem; line-height: 1.35;
  margin-bottom: 0.5rem; color: #000;
}
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { color: #133331; }
body.dark .card__title { color: #fff; }
body.dark .card__title a:hover { color: #cbd8ac; }

.card__excerpt {
  font-size: 0.9rem; color: #525252;
  line-height: 1.6; margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
body.dark .card__excerpt { color: rgba(255, 255, 255, 0.7); }

.card__read-time {
  font-size: 0.78rem; color: #999;
  margin-top: auto;
}


/* Card recipe meta (time + difficulty) */

.card__recipe-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(19, 51, 49, 0.05);
}
body.dark .card__recipe-meta { border-top-color: rgba(203, 216, 172, 0.06); }

.card__recipe-time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #133331;
}
.card__recipe-time svg { color: #cbd8ac; flex-shrink: 0; }
body.dark .card__recipe-time { color: #cbd8ac; }

.card__recipe-difficulty {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(203, 216, 172, 0.15);
  color: #3d7a3e;
}
body.dark .card__recipe-difficulty {
  background: rgba(203, 216, 172, 0.1);
  color: #cbd8ac;
}

/* Recipe cards use 4:3 images */
.card--recipe .card__image-wrap { aspect-ratio: 4 / 3; }


/* ============================================
   1. RECIPE HERO — Typographic + filmstrip
   ============================================ */

.rhero {
  background: #133331;
  padding: 3.5rem 0 0;
  overflow: hidden;
}

.rhero__eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #f9d87f;
  margin-bottom: 1rem;
}

.rhero__title {
  font-family: 'recoletabold';
  font-size: calc(2.2rem + 2.5vw);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}

.rhero__title-accent {
  color: #cbd8ac;
  position: relative;
  display: inline-block;
}

/* Decorative underline behind text */
.rhero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 0.05em; left: 0; right: 0;
  height: 0.12em;
  background: #f9d87f;
  border-radius: 2px;
  opacity: 0.5;
  z-index: 0;
}

/* Text above underline */
.rhero__title-accent { z-index: 1; }

.rhero__desc {
  font-size: 1.1rem; line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 0;
}

/* Filmstrip — horizontal scroll of round thumbnails */
.rhero__filmstrip {
  margin-top: 2.5rem;
  padding-bottom: 2.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}
.rhero__filmstrip::-webkit-scrollbar { display: none; }

.rhero__filmstrip-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 max(1rem, calc((100vw - 1140px) / 2));
  width: max-content;
  scroll-snap-type: x proximity;
}

.rhero__film-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
  scroll-snap-align: center;
}

.rhero__film-item img {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.rhero__film-item:hover img {
  border-color: #f9d87f;
  transform: translateY(-4px);
}

.rhero__film-item span {
  font-size: 0.75rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .rhero__film-item img { width: 120px; height: 120px; }
  .rhero__film-item span { font-size: 0.78rem; max-width: 120px; }
}


/* ============================================
   2. SEASONAL — Horizontal scroll tall cards
   ============================================ */

.rseason {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .rseason { border-bottom-color: rgba(203, 216, 172, 0.08); }

.rseason__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.rseason__eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #f9d87f;
  margin-bottom: 0.25rem;
}

.rseason__title {
  font-family: 'recoletabold';
  font-size: calc(1.2rem + 0.5vw);
  color: #000;
  margin: 0;
}
body.dark .rseason__title { color: #fff; }

.rseason__link {
  font-size: 0.85rem; font-weight: 600;
  color: #133331;
  text-decoration: none;
  white-space: nowrap;
}
.rseason__link:hover { color: #b8940a; }
body.dark .rseason__link { color: #cbd8ac; }
body.dark .rseason__link:hover { color: #f9d87f; }

.rseason__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -16px;
  padding: 0 16px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 2%, black 95%, transparent);
}
.rseason__scroll::-webkit-scrollbar { display: none; }

.rseason__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-right: 2rem;
  scroll-snap-type: x proximity;
}

.rseason__card {
  position: relative;
  display: block;
  width: 220px;
  aspect-ratio: 2 / 3;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .rseason__card { width: 260px; }
}

.rseason__card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rseason__card:hover .rseason__card-img { transform: scale(1.05); }

.rseason__card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.08) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.rseason__card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  z-index: 2;
}

.rseason__card-cat {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #f9d87f;
  margin-bottom: 0.3rem;
}

.rseason__card-title {
  font-family: 'recoletabold';
  font-size: 1.05rem;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 0.35rem;
}

.rseason__card-time {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}


/* ============================================
   3. CATEGORIES — Color tiles
   ============================================ */

.rcats {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .rcats { border-bottom-color: rgba(203, 216, 172, 0.08); }

.rcats__title {
  font-family: 'recoletabold';
  font-size: calc(1.2rem + 0.5vw);
  color: #000;
  margin-bottom: 1.5rem;
}
body.dark .rcats__title { color: #fff; }

.rcats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

/* 5-tile variant: 3+2 on medium, 5 on large */
.rcats__grid--5 {
  grid-template-columns: repeat(2, 1fr);
}

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

@media (min-width: 960px) {
  .rcats__grid--5 { grid-template-columns: repeat(5, 1fr); }
}

.rcat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  border-radius: 0.75rem;
  min-height: 110px;
  text-decoration: none;
  overflow: hidden;
  background: var(--rcat-hue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rcat-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 60%
  );
}

.rcat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.rcat-tile__name {
  position: relative;
  font-family: 'recoletabold';
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.rcat-tile__count {
  position: relative;
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.2rem;
}


/* ============================================
   4. ALL RECIPES — Header + sort
   ============================================ */

.rall__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.rall__title {
  font-family: 'recoletabold';
  font-size: calc(1.2rem + 0.5vw);
  color: #000;
  margin: 0;
}
body.dark .rall__title { color: #fff; }

.rall__sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rall__sort-label {
  font-size: 0.82rem;
  color: #999;
  white-space: nowrap;
}

.rall__sort-select {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #133331;
  background: transparent;
  border: 1px solid rgba(19, 51, 49, 0.12);
  border-radius: 100px;
  padding: 0.4rem 2rem 0.4rem 0.8rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23133331' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 12px;
}
body.dark .rall__sort-select {
  color: #cbd8ac;
  border-color: rgba(203, 216, 172, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23cbd8ac' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


/* ============================================
   RECIPE GRID — Uniform 3-col, overlay cards
   ============================================ */

.rgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .rgrid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .rgrid { grid-template-columns: 1fr 1fr 1fr; }
}


/* Recipe card — image-dominant overlay */

.rcard {
  position: relative;
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  color: #fff;
}

.rcard__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rcard:hover .rcard__img { transform: scale(1.04); }

/* Gradient overlay */
.rcard::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(0, 0, 0, 0.03) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.rcard:hover::after {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.18) 50%,
    rgba(0, 0, 0, 0.06) 100%
  );
}

/* Badges top */
.rcard__badges {
  position: absolute;
  top: 0.75rem; left: 0.75rem; right: 0.75rem;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.rcard__badge-time,
.rcard__badge-diff {
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rcard__badge-time {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.rcard__badge-time::before {
  content: '';
  width: 11px; height: 11px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.rcard__badge-diff {
  background: rgba(203, 216, 172, 0.25);
  color: #fff;
}

/* Content bottom */
.rcard__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  z-index: 2;
}

.rcard__cat {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #f9d87f;
  margin-bottom: 0.35rem;
}

.rcard__title {
  font-family: 'recoletabold';
  font-size: 1.1rem;
  line-height: 1.25;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .rcard__title { font-size: 1.15rem; }
}

.rcard:focus-visible {
  outline: 3px solid #cbd8ac;
  outline-offset: 2px;
}


/* ============================================
   PLANT HERO — Botanical identity card (70vh cap)
   ============================================ */

.plant-hero {
  background: #f4f2ee;
  overflow: hidden;
}
body.dark .plant-hero { background: #0f2523; }

.plant-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

/* Desktop: side-by-side, 70vh height */
@media (min-width: 768px) {
  .plant-hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    height: 70vh;
    min-height: 480px;
    max-height: 680px;
  }
  .plant-hero__text {
    padding: 2.5rem 0;
  }
}

@media (min-width: 1080px) {
  .plant-hero__grid { gap: 4rem; }
}

.plant-hero__family {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #7dad65;
  margin-bottom: 0.5rem;
}

.plant-hero__name {
  font-family: 'recoletabold';
  font-size: calc(2rem + 2vw);
  line-height: 1.05;
  color: #000;
  margin-bottom: 0.25rem;
}
body.dark .plant-hero__name { color: #fff; }

.plant-hero__latin {
  font-size: 1.05rem;
  color: #999;
  margin-bottom: 0;
}
body.dark .plant-hero__latin { color: rgba(255, 255, 255, 0.5); }

.plant-hero__intro {
  font-size: 1.05rem; line-height: 1.65;
  color: #525252;
  max-width: 520px;
  margin-bottom: 1.75rem;
}
body.dark .plant-hero__intro { color: rgba(255, 255, 255, 0.7); }

/* Quick stats grid */
.plant-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .plant-hero__stats { grid-template-columns: 1fr 1fr 1fr; }
}

.plant-stat {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: rgba(19, 51, 49, 0.03);
  border: 1px solid rgba(19, 51, 49, 0.06);
  border-radius: 0.5rem;
}

body.dark .plant-stat {
  background: rgba(203, 216, 172, 0.04);
  border-color: rgba(203, 216, 172, 0.08);
}

.plant-stat__icon {
    font-size: 1.375rem; /* équivalent au width:22px des SVG */
    flex-shrink: 0;
		margin-top: 0.15rem;
		color: #7dad65;
}
body.dark .plant-stat__icon { color: #cbd8ac; }

.plant-stat__label {
  display: block;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #999;
  margin-bottom: 0.1rem;
}

.plant-stat__value {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: #133331;
}
body.dark .plant-stat__value { color: #cbd8ac; }

/* Plant hero image — fills 70vh height on desktop */
.plant-hero__image {
  display: none;
}

@media (min-width: 768px) {
  .plant-hero__image {
    display: block;
    height: 100%;
    overflow: hidden;
  }

  .plant-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

/* Mobile: image as banner above content */
@media (max-width: 767px) {
  .plant-hero__image {
    display: block;
    margin: 0 -16px;
    max-height: 35vh;
    overflow: hidden;
  }
  .plant-hero__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    max-height: 35vh;
  }
  .plant-hero__text { order: 2; padding: 1.5rem 0 2rem; }
  .plant-hero__image { order: 1; }
}


/* ============================================
   PLANT ID CARD — Botanical sidebar
   ============================================ */

.plant-id-card {
  background: rgba(19, 51, 49, 0.02);
  border: 1px solid rgba(19, 51, 49, 0.08);
  border-radius: 0.75rem;
  padding: 1.15rem;
  margin-bottom: 1.5rem;
}
body.dark .plant-id-card {
  background: rgba(203, 216, 172, 0.03);
  border-color: rgba(203, 216, 172, 0.1);
}

.plant-id-card__heading {
  font-family: 'recoletabold';
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #133331;
  margin: 0 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(19, 51, 49, 0.08);
}
body.dark .plant-id-card__heading {
  color: #cbd8ac;
  border-bottom-color: rgba(203, 216, 172, 0.1);
}

h3.plant-id-card__heading {
  margin-top: 1rem;
}

.plant-id-card__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.6rem;
  margin: 0;
  padding: 0;
}

.plant-id-card__list dt {
  font-size: 0.72rem;
  font-weight: 700;
  color: #999;
  padding: 0.25rem 0;
  white-space: nowrap;
}

.plant-id-card__list dd {
  font-size: 0.78rem;
  font-weight: 500;
  color: #133331;
  margin: 0;
  padding: 0.25rem 0;
}
body.dark .plant-id-card__list dd { color: rgba(255, 255, 255, 0.8); }

.plant-id-card__list dd em {
  font-style: italic;
  color: #999;
}
body.dark .plant-id-card__list dd em { color: rgba(255, 255, 255, 0.5); }


/* ============================================
   FAQ — People Also Ask
   ============================================ */

.faq-item {
  padding: 1.25rem;
  border: 1px solid rgba(19, 51, 49, 0.06);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  background: rgba(19, 51, 49, 0.015);
  transition: border-color 0.2s ease;
}
body.dark .faq-item {
  background: rgba(203, 216, 172, 0.02);
  border-color: rgba(203, 216, 172, 0.08);
}

.faq-item:hover {
  border-color: rgba(19, 51, 49, 0.12);
}
body.dark .faq-item:hover { border-color: rgba(203, 216, 172, 0.15); }

.faq-item__question {
  font-family: 'recoletabold';
  font-size: 0.95rem;
  color: #133331;
  margin: 0 0 0.5rem;
}
body.dark .faq-item__question { color: #fff; }

.faq-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #525252;
  margin: 0;
}
body.dark .faq-item p { color: rgba(255, 255, 255, 0.7); }


/* ============================================
   PLANT HERO META — Date + reading time
   ============================================ */

.plant-hero__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.plant-hero__date,
.plant-hero__reading {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #999;
}
.plant-hero__date svg,
.plant-hero__reading svg {
  color: #7dad65;
  flex-shrink: 0;
}
body.dark .plant-hero__date,
body.dark .plant-hero__reading { color: rgba(255, 255, 255, 0.5); }
body.dark .plant-hero__date svg,
body.dark .plant-hero__reading svg { color: #cbd8ac; }


/* ============================================
   BLOC EXPERIENCE — E-E-A-T signal
   ============================================ */

.bloc-experience {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  background: rgba(125, 173, 101, 0.05);
  border: 1px solid rgba(125, 173, 101, 0.15);
  border-left: 4px solid #7dad65;
  border-radius: 0.5rem;
}
body.dark .bloc-experience {
  background: rgba(125, 173, 101, 0.04);
  border-color: rgba(125, 173, 101, 0.12);
  border-left-color: #7dad65;
}

.bloc-experience__photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(125, 173, 101, 0.2);
}

@media (max-width: 599px) {
  .bloc-experience__photo { width: 48px; height: 48px; }
}

.bloc-experience__title {
  display: block;
  font-family: 'recoletabold';
  font-size: 0.9rem;
  color: #3d7a3e;
  margin-bottom: 0.3rem;
}
body.dark .bloc-experience__title { color: #7dad65; }

.bloc-experience__content p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #525252;
  margin: 0;
}
body.dark .bloc-experience__content p { color: rgba(255, 255, 255, 0.7); }


/* ============================================
   BLOC VIDEO — Responsive YouTube embed
   ============================================ */

.bloc-video {
  margin: 1.5rem 0;
}

.bloc-video__wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #000;
}

.bloc-video__wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.bloc-video__caption {
  font-size: 0.78rem;
  color: #999;
  margin-top: 0.5rem;
  text-align: center;
  font-style: italic;
}


/* ============================================
   PLANT SOURCES — External authority links
   ============================================ */

.plant-sources {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.plant-sources li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(19, 51, 49, 0.05);
  font-size: 0.88rem;
  line-height: 1.5;
  color: #525252;
}
body.dark .plant-sources li {
  border-bottom-color: rgba(203, 216, 172, 0.06);
  color: rgba(255, 255, 255, 0.7);
}

.plant-sources li:last-child { border-bottom: none; }

.plant-sources li a {
  font-weight: 700;
  color: #133331;
  text-decoration: none;
  border-bottom: 1px solid rgba(19, 51, 49, 0.2);
  transition: border-color 0.2s ease;
}
.plant-sources li a:hover { border-bottom-color: #7dad65; }
body.dark .plant-sources li a { color: #cbd8ac; border-bottom-color: rgba(203, 216, 172, 0.2); }


/* ============================================
   PLANT GALLERY — Variety image grid
   ============================================ */

.plant-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

@media (max-width: 599px) {
  .plant-gallery { grid-template-columns: repeat(2, 1fr); }
}

.plant-gallery__item {
  margin: 0;
}

.plant-gallery__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.plant-gallery__item:hover img { transform: scale(1.03); }

.plant-gallery__item figcaption {
  font-size: 0.75rem;
  font-weight: 600;
  color: #525252;
  text-align: center;
  margin-top: 0.35rem;
}
body.dark .plant-gallery__item figcaption { color: rgba(255, 255, 255, 0.6); }


/* ============================================
   PLANT SIMILAR — Family cocon sémantique
   ============================================ */

.plant-similar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .plant-similar-grid { grid-template-columns: repeat(4, 1fr); }
}

.plant-similar-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(19, 51, 49, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
body.dark .plant-similar-card { border-color: rgba(203, 216, 172, 0.08); }

.plant-similar-card:hover {
  border-color: rgba(125, 173, 101, 0.3);
  transform: translateY(-2px);
}

.plant-similar-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.plant-similar-card__body {
  padding: 0.75rem;
}

.plant-similar-card__body strong {
  display: block;
  font-family: 'recoletabold';
  font-size: 0.9rem;
  color: #133331;
  margin-bottom: 0.1rem;
}
body.dark .plant-similar-card__body strong { color: #fff; }

.plant-similar-card__body span {
  font-size: 0.75rem;
  color: #999;
}
.plant-similar-card__body em { font-style: italic; }


/* ============================================
   PLANT SECTIONS
   ============================================ */

.plant-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
}
.plant-section:last-of-type { border-bottom: none; }
body.dark .plant-section { border-bottom-color: rgba(203, 216, 172, 0.08); }

.plant-section__title {
  font-family: 'recoletabold';
  font-size: calc(1.15rem + 0.35vw);
  color: #000;
  margin-bottom: 1.25rem;
}
body.dark .plant-section__title { color: #fff; }


/* ============================================
   PLANT CALENDAR — Visual monthly bar
   ============================================ */

.plant-calendar {
  background: rgba(19, 51, 49, 0.02);
  border: 1px solid rgba(19, 51, 49, 0.06);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
}
body.dark .plant-calendar {
  background: rgba(203, 216, 172, 0.03);
  border-color: rgba(203, 216, 172, 0.08);
}

.plant-calendar__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.plant-calendar__row:last-of-type { margin-bottom: 0.75rem; }

.plant-calendar__label {
  font-size: 0.75rem; font-weight: 600;
  color: #525252;
  min-width: 110px;
  flex-shrink: 0;
}
body.dark .plant-calendar__label { color: rgba(255, 255, 255, 0.6); }

.plant-calendar__months {
  display: flex;
  gap: 3px;
  flex: 1;
}

.plant-cal-m {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 28px;
  height: 32px;
  border-radius: 4px;
  font-size: 0.68rem; font-weight: 700;
  color: transparent;
  background: rgba(19, 51, 49, 0.04);
  user-select: none;
}
body.dark .plant-cal-m { background: rgba(203, 216, 172, 0.04); }

/* Semis intérieur — warm orange */
.plant-cal-m--semis-in {
  background: #e8a74e;
  color: #fff;
}

/* Semis extérieur — light green */
.plant-cal-m--semis-out {
  background: #7dad65;
  color: #fff;
}

/* Plantation — green */
.plant-cal-m--plant {
  background: #4d9a5c;
  color: #fff;
}

/* Récolte — rich red */
.plant-cal-m--harvest {
  background: #c85032;
  color: #fff;
}

/* Legend */
.plant-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .plant-calendar__legend { border-top-color: rgba(203, 216, 172, 0.08); }

.plant-calendar__legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600;
  color: #525252;
}
body.dark .plant-calendar__legend-item { color: rgba(255, 255, 255, 0.6); }

.plant-cal-dot {
  width: 10px; height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.plant-cal-dot--semis-in { background: #e8a74e; }
.plant-cal-dot--semis-out { background: #7dad65; }
.plant-cal-dot--plant { background: #4d9a5c; }
.plant-cal-dot--harvest { background: #c85032; }


/* ============================================
   PLANT DATA GRID — Structured key-value pairs
   ============================================ */

.plant-data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(19, 51, 49, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
body.dark .plant-data-grid { border-color: rgba(203, 216, 172, 0.1); }

@media (min-width: 600px) {
  .plant-data-grid { grid-template-columns: 1fr 1fr; }
}

.plant-data-grid--compact {
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .plant-data-grid--compact { grid-template-columns: 1fr 1fr 1fr; }
}

.plant-data-item {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
  background: rgba(19, 51, 49, 0.015);
}
body.dark .plant-data-item {
  background: rgba(203, 216, 172, 0.02);
  border-bottom-color: rgba(203, 216, 172, 0.06);
}

.plant-data-item:last-child { border-bottom: none; }

@media (min-width: 600px) {
  .plant-data-item { border-right: 1px solid rgba(19, 51, 49, 0.06); }
  body.dark .plant-data-item { border-right-color: rgba(203, 216, 172, 0.06); }
  .plant-data-item:nth-child(2n) { border-right: none; }
  .plant-data-grid--compact .plant-data-item:nth-child(2n) { border-right: 1px solid rgba(19, 51, 49, 0.06); }
  .plant-data-grid--compact .plant-data-item:nth-child(3n) { border-right: none; }
}

.plant-data-item__label {
  display: block;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #999;
  margin-bottom: 0.2rem;
}

.plant-data-item__value {
  display: block;
  font-size: 0.88rem; font-weight: 500;
  color: #133331;
  line-height: 1.4;
}
body.dark .plant-data-item__value { color: #cbd8ac; }


/* ============================================
   PLANT CHECKLIST
   ============================================ */

.bloc-checklist {
  background: rgba(125, 173, 101, 0.06);
  border: 1px solid rgba(125, 173, 101, 0.15);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
body.dark .bloc-checklist {
  background: rgba(125, 173, 101, 0.05);
  border-color: rgba(125, 173, 101, 0.12);
}

.bloc-checklist__title {
  font-family: 'recoletabold';
  font-size: 0.95rem;
  color: #3d7a3e;
  margin-bottom: 0.75rem;
}
body.dark .bloc-checklist__title { color: #7dad65; }

.bloc-checklist__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bloc-checklist__list li {
  position: relative;
  padding-left: 1.75rem;
  padding-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
body.dark .bloc-checklist__list li { color: rgba(255, 255, 255, 0.8); }

.bloc-checklist__list li:last-child { padding-bottom: 0; }

.bloc-checklist__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.25rem;
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 2px solid rgba(125, 173, 101, 0.4);
  background: rgba(125, 173, 101, 0.08);
}


/* ============================================
   PLANT PROBLEMS — Disease / pest cards
   ============================================ */

.plant-problem {
  padding: 1.25rem;
  border: 1px solid rgba(19, 51, 49, 0.06);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  background: rgba(19, 51, 49, 0.015);
}
body.dark .plant-problem {
  background: rgba(203, 216, 172, 0.02);
  border-color: rgba(203, 216, 172, 0.08);
}

/* With image variant */
.plant-problem--with-img {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .plant-problem--with-img {
    grid-template-columns: 160px 1fr;
    gap: 1.25rem;
  }
}

.plant-problem__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media (min-width: 600px) {
  .plant-problem__img {
    aspect-ratio: 4 / 3;
    height: 100%;
    max-height: 180px;
  }
}

.plant-problem__body { }

.plant-problem__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.plant-problem__name {
  font-family: 'recoletabold';
  font-size: 1rem;
  color: #133331;
  margin: 0;
}
body.dark .plant-problem__name { color: #fff; }

.plant-problem__severity {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plant-problem__severity--high {
  background: rgba(200, 80, 50, 0.1);
  color: #c85032;
}
body.dark .plant-problem__severity--high { background: rgba(200, 80, 50, 0.15); color: #e07b5e; }

.plant-problem__severity--medium {
  background: rgba(232, 167, 78, 0.12);
  color: #b8860b;
}
body.dark .plant-problem__severity--medium { background: rgba(232, 167, 78, 0.15); color: #e8a74e; }

.plant-problem__severity--low {
  background: rgba(125, 173, 101, 0.1);
  color: #3d7a3e;
}
body.dark .plant-problem__severity--low { background: rgba(125, 173, 101, 0.12); color: #7dad65; }

.plant-problem__symptoms,
.plant-problem__solution {
  font-size: 0.88rem; line-height: 1.55;
  color: #525252;
  margin: 0 0 0.4rem;
}
.plant-problem__solution { margin-bottom: 0; }
body.dark .plant-problem__symptoms,
body.dark .plant-problem__solution { color: rgba(255, 255, 255, 0.7); }


/* ============================================
   PLANT COMPANIONS — Association cards
   ============================================ */

.plant-companions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .plant-companions { grid-template-columns: 1fr 1fr; }
}

.plant-companions__group { }

.plant-companions__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'recoletabold';
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.plant-companions__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 0.75rem; font-weight: 800;
  flex-shrink: 0;
}

.plant-companions__group--good .plant-companions__icon {
  background: rgba(125, 173, 101, 0.15);
  color: #3d7a3e;
}
.plant-companions__group--good .plant-companions__heading { color: #3d7a3e; }
body.dark .plant-companions__group--good .plant-companions__heading { color: #7dad65; }
body.dark .plant-companions__group--good .plant-companions__icon { background: rgba(125, 173, 101, 0.12); color: #7dad65; }

.plant-companions__group--bad .plant-companions__icon {
  background: rgba(200, 80, 50, 0.1);
  color: #c85032;
}
.plant-companions__group--bad .plant-companions__heading { color: #c85032; }
body.dark .plant-companions__group--bad .plant-companions__heading { color: #e07b5e; }
body.dark .plant-companions__group--bad .plant-companions__icon { background: rgba(200, 80, 50, 0.12); color: #e07b5e; }

.plant-companions__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plant-companion {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid rgba(19, 51, 49, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}
body.dark .plant-companion { border-color: rgba(203, 216, 172, 0.08); }

.plant-companion:hover {
  background: rgba(19, 51, 49, 0.02);
  border-color: rgba(19, 51, 49, 0.12);
}
body.dark .plant-companion:hover {
  background: rgba(203, 216, 172, 0.04);
  border-color: rgba(203, 216, 172, 0.15);
}

.plant-companion img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.plant-companion strong {
  display: block;
  font-size: 0.88rem;
  color: #133331;
}
body.dark .plant-companion strong { color: #cbd8ac; }

.plant-companion span {
  display: block;
  font-size: 0.78rem;
  color: #999;
  line-height: 1.3;
}


/* ============================================
   PLANT INDEX HERO — Search-first
   ============================================ */

.phero {
  background: #133331;
  padding: 3.5rem 0 2.5rem;
}

.phero__eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #cbd8ac;
  margin-bottom: 0.75rem;
}

.phero__title {
  font-family: 'recoletabold';
  font-size: calc(1.8rem + 1.5vw);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.75rem;
}

.phero__desc {
  font-size: 1.05rem; line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 0 1.75rem;
}

/* Search field */
.phero__search {
  position: relative;
  max-width: 480px;
  margin: 0 0 1rem;
}

.phero__search-icon {
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.phero__search-input {
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.phero__search-input:focus {
  border-color: #cbd8ac;
  box-shadow: 0 0 0 3px rgba(203, 216, 172, 0.15);
}

.phero__search-input::placeholder { color: rgba(255, 255, 255, 0.4); }

.phero__count {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.phero__count strong {
  color: #cbd8ac;
  font-weight: 700;
}


/* ============================================
   PLANT SEASONAL BANNER — Ce mois-ci
   ============================================ */

.pseason {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .pseason { border-bottom-color: rgba(203, 216, 172, 0.08); }

.pseason__inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.pseason__month {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 0.25rem;
}
.pseason__month svg { color: #7dad65; }

.pseason__title {
  font-family: 'recoletabold';
  font-size: 1.15rem;
  color: #000;
  margin: 0;
}
body.dark .pseason__title { color: #fff; }

.pseason__tags {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  flex: 1;
}

.pseason__tag-group { }

.pseason__tag-label {
  display: block;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.pseason__tag-label--sow { color: #e8a74e; }
.pseason__tag-label--harvest { color: #c85032; }

.pseason__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pseason__tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  background: rgba(19, 51, 49, 0.04);
  color: #133331;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.pseason__tag:hover {
  background: rgba(125, 173, 101, 0.12);
  color: #3d7a3e;
}
body.dark .pseason__tag {
  background: rgba(203, 216, 172, 0.06);
  color: #cbd8ac;
}
body.dark .pseason__tag:hover {
  background: rgba(203, 216, 172, 0.12);
  color: #fff;
}


/* ============================================
   PLANT CATEGORIES — Type navigation tiles
   ============================================ */

.pcats {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .pcats { border-bottom-color: rgba(203, 216, 172, 0.08); }

.pcats__title {
  font-family: 'recoletabold';
  font-size: calc(1.15rem + 0.4vw);
  color: #000;
  margin-bottom: 1.25rem;
}
body.dark .pcats__title { color: #fff; }

.pcats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

@media (min-width: 600px) {
  .pcats__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .pcats__grid { grid-template-columns: 1fr 1fr 1fr; }
}

.pcat-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(19, 51, 49, 0.06);
  border-radius: 0.65rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
body.dark .pcat-tile { border-color: rgba(203, 216, 172, 0.08); }

.pcat-tile:hover {
  border-color: rgba(125, 173, 101, 0.3);
  background: rgba(125, 173, 101, 0.03);
  transform: translateY(-2px);
}
body.dark .pcat-tile:hover {
  border-color: rgba(203, 216, 172, 0.2);
  background: rgba(203, 216, 172, 0.04);
}

.pcat-tile__icon {
	font-size: 1.75rem;
	flex-shrink: 0;
	line-height: 1;
  padding: 6px;
  background: rgba(125, 173, 101, 0.08);
  border-radius: 0.5rem;
  color: #7dad65;
}

body.dark .pcat-tile__icon { background: rgba(125, 173, 101, 0.1); color: #cbd8ac; }

.pcat-tile__name {
  display: block;
  font-family: 'recoletabold';
  font-size: 0.95rem;
  color: #133331;
  line-height: 1.25;
}
body.dark .pcat-tile__name { color: #fff; }

.pcat-tile__count {
  display: block;
  font-size: 0.72rem; font-weight: 600;
  color: #7dad65;
}

.pcat-tile__examples {
  display: block;
  font-size: 0.75rem;
  color: #999;
  line-height: 1.3;
}


/* ============================================
   PLANT ALL — Header + Sort (reuse rall pattern)
   ============================================ */

.pall__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pall__title {
  font-family: 'recoletabold';
  font-size: calc(1.15rem + 0.4vw);
  color: #000;
  margin: 0;
}
body.dark .pall__title { color: #fff; }

.pall__sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pall__sort-label {
  font-size: 0.82rem;
  color: #999;
  white-space: nowrap;
}

.pall__sort-select {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  color: #133331;
  background: transparent;
  border: 1px solid rgba(19, 51, 49, 0.12);
  border-radius: 100px;
  padding: 0.4rem 2rem 0.4rem 0.8rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23133331' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 12px;
}
body.dark .pall__sort-select {
  color: #cbd8ac;
  border-color: rgba(203, 216, 172, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23cbd8ac' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


/* ============================================
   PLANT GRID — Botanical reference cards
   ============================================ */

.pgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

@media (min-width: 960px) {
  .pgrid { grid-template-columns: repeat(4, 1fr); }
}

.pcard {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(19, 51, 49, 0.06);
  border-radius: 0.65rem;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}
body.dark .pcard {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(203, 216, 172, 0.08);
}

.pcard:hover {
  border-color: rgba(125, 173, 101, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
body.dark .pcard:hover {
  border-color: rgba(203, 216, 172, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pcard:focus-visible {
  outline: 3px solid #7dad65;
  outline-offset: 2px;
}

.pcard__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.pcard__body {
  padding: 0.85rem;
}

.pcard__name {
  font-family: 'recoletabold';
  font-size: 1rem;
  color: #133331;
  margin: 0 0 0.1rem;
  line-height: 1.25;
}
body.dark .pcard__name { color: #fff; }

.pcard__latin {
  font-size: 0.75rem;
  color: #999;
  margin: 0 0 0.6rem;
}
.pcard__latin em { font-style: italic; }

.pcard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.pcard__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem; font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: rgba(19, 51, 49, 0.04);
  color: #525252;
}
body.dark .pcard__tag {
  background: rgba(203, 216, 172, 0.06);
  color: rgba(255, 255, 255, 0.6);
}

.pcard__tag svg {
  width: 12px; height: 12px;
  color: #e8a74e;
  flex-shrink: 0;
}

.pcard__tag--diff { color: #7dad65; }
.pcard__tag--harvest { color: #c85032; }
body.dark .pcard__tag--diff { color: #cbd8ac; }
body.dark .pcard__tag--harvest { color: #e07b5e; }

/* Date labels — Semis / Récolte */
.pcard__dates {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .pcard__dates { border-top-color: rgba(203, 216, 172, 0.06); }

.pcard__date {
  font-size: 0.72rem;
  color: #525252;
  font-weight: 500;
}
body.dark .pcard__date { color: rgba(255, 255, 255, 0.6); }

.pcard__date-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  margin-right: 0.25rem;
  vertical-align: middle;
}

.pcard__date-label--sow {
  background: rgba(232, 167, 78, 0.12);
  color: #b8860b;
}
body.dark .pcard__date-label--sow {
  background: rgba(232, 167, 78, 0.15);
  color: #e8a74e;
}

.pcard__date-label--plant {
  background: rgba(77, 154, 92, 0.1);
  color: #3d7a3e;
}
body.dark .pcard__date-label--plant {
  background: rgba(77, 154, 92, 0.12);
  color: #7dad65;
}

.pcard__date-label--harvest {
  background: rgba(200, 80, 50, 0.1);
  color: #c85032;
}
body.dark .pcard__date-label--harvest {
  background: rgba(200, 80, 50, 0.12);
  color: #e07b5e;
}


/* ============================================
   PAGINATION
   ============================================ */

.pagination {
  display: flex; justify-content: center;
  align-items: center; gap: 0.35rem;
  padding-top: 2.5rem;
}

.pagination__item {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem; font-weight: 500;
  color: #525252;
  text-decoration: none;
  transition: 0.3s ease;
}
.pagination__item:hover {
  background: rgba(19, 51, 49, 0.05);
  color: #133331;
}

.pagination__item--current {
  background: #133331; color: #fff;
}
.pagination__item--current:hover {
  background: #133331; color: #fff;
}

.pagination__ellipsis { color: #999; padding: 0 0.25rem; }

body.dark .pagination__item { color: rgba(255, 255, 255, 0.6); }
body.dark .pagination__item:hover { background: rgba(203, 216, 172, 0.1); color: #cbd8ac; }
body.dark .pagination__item--current { background: #cbd8ac; color: #133331; }
body.dark .pagination__item--current:hover { background: #cbd8ac; color: #133331; }


/* ============================================
   NEWSLETTER CTA — Full width section
   ============================================ */

.cta-newsletter {
  background: #f4f2ee;
  padding: 4rem 0;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .cta-newsletter {
  background: #0f2523;
  border-top-color: rgba(203, 216, 172, 0.08);
}

.cta-newsletter__glass {
  background: #fff;
  border: 1px solid rgba(19, 51, 49, 0.08);
  border-radius: 1rem;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
body.dark .cta-newsletter__glass {
  background: rgba(19, 51, 49, 0.5);
  border-color: rgba(203, 216, 172, 0.12);
}
@media (min-width: 768px) {
  .cta-newsletter__glass { grid-template-columns: 1fr auto; padding: 3rem; }
}

.cta-newsletter__eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #f9d87f;
  margin-bottom: 0.5rem;
}

.cta-newsletter__title {
  font-family: 'recoletabold';
  font-size: calc(1.3rem + 0.5vw);
  color: #133331;
  margin-bottom: 0.5rem;
}
body.dark .cta-newsletter__title { color: #fff; }

.cta-newsletter__desc {
  font-size: 0.95rem;
  color: #525252;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 0;
}
body.dark .cta-newsletter__desc { color: rgba(255, 255, 255, 0.7); }

.cta-newsletter__form-wrap { min-width: 280px; }

.cta-newsletter__form {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.cta-newsletter__note {
  display: block; text-align: center;
  font-size: 0.72rem; color: #999;
  margin-top: 0.5rem;
}
body.dark .cta-newsletter__note { color: rgba(255, 255, 255, 0.35); }


/* ============================================
   RECIPE HERO — Split layout (text left, image 4:5 right, max 70vh)
   ============================================ */

.recipe-hero-split {
  background: #f4f2ee;
  max-height: 70vh;
  overflow: hidden;
}
body.dark .recipe-hero-split { background: #0f2523; }

.recipe-hero-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

@media (min-width: 768px) {
  .recipe-hero-split__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-height: 70vh;
  }
}

@media (min-width: 1080px) {
  .recipe-hero-split__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.recipe-hero-split__text {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .recipe-hero-split__text { padding: 3.5rem 0; }
}

.recipe-hero-split__cat {
  display: inline-block;
  width: fit-content;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem; border-radius: 100px;
  background: rgba(249, 216, 127, 0.15);
  color: #b8940a;
  border: 1px solid rgba(249, 216, 127, 0.3);
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.recipe-hero-split__cat:hover { background: rgba(249, 216, 127, 0.3); }
body.dark .recipe-hero-split__cat { color: #f9d87f; background: rgba(249, 216, 127, 0.1); border-color: rgba(249, 216, 127, 0.2); }

.recipe-hero-split__title {
  font-family: 'recoletabold';
  font-size: calc(1.6rem + 1.2vw);
  line-height: 1.12;
  margin-bottom: 1rem;
  color: #000;
  max-width: 520px;
}
body.dark .recipe-hero-split__title { color: #fff; }

.recipe-hero-split__lead {
  font-size: 1.1rem; line-height: 1.65;
  color: #525252;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
body.dark .recipe-hero-split__lead { color: rgba(255, 255, 255, 0.75); }

.recipe-hero-split__meta { margin-top: auto; }

.recipe-hero-split__author {
  display: flex; align-items: center; gap: 0.75rem;
}

.recipe-hero-split__author img {
  border-radius: 50%; object-fit: cover;
}

.recipe-hero-split__author-name {
  display: block;
  font-weight: 600; font-size: 0.92rem;
  color: #133331;
}
body.dark .recipe-hero-split__author-name { color: #cbd8ac; }

.recipe-hero-split__date {
  display: block;
  font-size: 0.78rem; color: #999;
}

.recipe-hero-split__image {
  overflow: hidden;
  display: none;
}

@media (min-width: 768px) {
  .recipe-hero-split__image {
    display: block;
    max-height: 70vh;
  }
}

.recipe-hero-split__img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4 / 5;
}

/* Mobile: image as horizontal banner below text */
@media (max-width: 767px) {
  .recipe-hero-split { max-height: none; }

  .recipe-hero-split__image {
    display: block;
    margin: 0 -16px;
    max-height: 50vh;
    overflow: hidden;
  }

  .recipe-hero-split__img {
    aspect-ratio: 16 / 10;
    max-height: 50vh;
  }
}


/* ============================================
   RECIPE INFO BAR
   ============================================ */

.recipe-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  background: rgba(19, 51, 49, 0.03);
  border: 1px solid rgba(19, 51, 49, 0.06);
  border-radius: 0.75rem;
}
body.dark .recipe-info {
  background: rgba(203, 216, 172, 0.04);
  border-color: rgba(203, 216, 172, 0.1);
}

.recipe-info__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #525252;
}
body.dark .recipe-info__item { color: rgba(255, 255, 255, 0.7); }

.recipe-info__item svg { flex-shrink: 0; color: #cbd8ac; }

.recipe-info__label {
  display: block;
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #999;
}

.recipe-info__value {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #133331;
}
body.dark .recipe-info__value { color: #fff; }

.recipe-info__print {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(19, 51, 49, 0.12);
  background: transparent;
  font-size: 0.82rem; font-weight: 600;
  color: #525252;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: 0.3s ease;
}
.recipe-info__print:hover {
  background: #133331; color: #fff;
  border-color: #133331;
}
body.dark .recipe-info__print {
  border-color: rgba(203, 216, 172, 0.2);
  color: #cbd8ac;
}
body.dark .recipe-info__print:hover {
  background: #cbd8ac; color: #133331;
  border-color: #cbd8ac;
}


/* ============================================
   RECIPE STORY (before the recipe)
   ============================================ */

.recipe-story {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(19, 51, 49, 0.08);
}
body.dark .recipe-story { border-bottom-color: rgba(203, 216, 172, 0.1); }

.recipe-story__title {
  font-family: 'recoletabold';
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: #000;
}
body.dark .recipe-story__title { color: #fff; }


/* ============================================
   RECIPE CARD (the actual recipe)
   ============================================ */

.recipe-card {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(19, 51, 49, 0.08);
}
body.dark .recipe-card { border-bottom-color: rgba(203, 216, 172, 0.1); }

.recipe-card__header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f9d87f;
}

.recipe-card__title {
  font-family: 'recoletabold';
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 0.25rem;
}
body.dark .recipe-card__title { color: #fff; }

.recipe-card__subtitle {
  font-size: 0.92rem;
  color: #999;
  margin-bottom: 0;
}


/* ============================================
   RECIPE GRID — Ingredients + Steps
   ============================================ */

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .recipe-grid {
    grid-template-columns: 260px 1fr;
    gap: 3rem;
  }
}


/* ============================================
   RECIPE INGREDIENTS (sticky on desktop)
   ============================================ */

.recipe-ingredients__sticky {
  /* Mobile : no sticky */
}

@media (min-width: 768px) {
  .recipe-ingredients__sticky {
    position: sticky;
    top: 100px;
  }
}

.recipe-ingredients__heading {
  font-family: 'recoletabold';
  font-size: 1.1rem;
  color: #133331;
  margin-bottom: 1.25rem;
}
body.dark .recipe-ingredients__heading { color: #cbd8ac; }

.ingredient-group {
  margin-bottom: 1.25rem;
}

.ingredient-group__title {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .ingredient-group__title {
  border-bottom-color: rgba(203, 216, 172, 0.08);
}

.ingredient-group__list {
  list-style: none;
  margin: 0; padding: 0;
}

.ingredient-group__list li {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #525252;
  padding: 0.4rem 0;
  border-bottom: 1px dotted rgba(19, 51, 49, 0.06);
}
.ingredient-group__list li:last-child { border-bottom: none; }
body.dark .ingredient-group__list li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(203, 216, 172, 0.06);
}

.ingredient-group__list li em {
  font-size: 0.82rem; color: #999;
}

.ingredient__qty {
  font-weight: 700;
  color: #133331;
  display: inline-block;
  min-width: 60px;
}
body.dark .ingredient__qty { color: #cbd8ac; }


/* ============================================
   RECIPE STEPS
   ============================================ */

.recipe-steps__heading {
  font-family: 'recoletabold';
  font-size: 1.1rem;
  color: #133331;
  margin-bottom: 1.5rem;
}
body.dark .recipe-steps__heading { color: #cbd8ac; }


/* Step group */

.step-group {
  margin-bottom: 2.5rem;
}

.step-group__title {
  font-family: 'recoletabold';
  font-size: 1rem;
  color: #133331;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(203, 216, 172, 0.3);
  display: inline-block;
}
body.dark .step-group__title {
  color: #cbd8ac;
  border-bottom-color: rgba(203, 216, 172, 0.15);
}


/* Individual step */

.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step__number {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #133331;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
body.dark .step__number {
  background: #cbd8ac;
  color: #133331;
}

.step__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: #525252;
  margin-bottom: 0;
}
body.dark .step__body p { color: rgba(255, 255, 255, 0.8); }
.step__body strong { color: #133331; }
body.dark .step__body strong { color: #fff; }


/* Recipe result */

.recipe-result {
  margin-top: 2rem;
}


/* ============================================
   RECIPE AFTER (after the recipe card)
   ============================================ */

.recipe-after {
  margin-bottom: 0;
}

.recipe-after .prose h2 {
  margin-top: 0;
  padding-top: 0;
}
.recipe-after .prose h2 + h3 {
  margin-top: 1.25rem;
}


/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .reading-progress,
  .breadcrumb,
  .recipe-info__print,
  .bloc-conseil,
  .bloc-suggestion,
  .bloc-attention,
  .bloc-leadmagnet,
  .bloc-newsletter,
  .bloc-video,
  .article-footer,
  .author-bio,
  .bloc-suggestions-grid,
  .comments-section,
  .toc-rail,
  .toc-mobile { display: none !important; }

  .recipe-hero-split { max-height: none; }
  .recipe-hero-split__image { display: none; }
  .recipe-hero-split__title { font-size: 1.5rem; color: #000; }

  .recipe-grid { grid-template-columns: 200px 1fr; gap: 1.5rem; }
  .recipe-ingredients__sticky { position: static; }

  .step__number { background: #000; -webkit-print-color-adjust: exact; }
  body { font-size: 11pt; }
}

/* Light variant — warm cream background, contrasts with dark footer */
.cta-newsletter--light {
  background: #f7f5f0;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}

.cta-newsletter--light .cta-newsletter__glass {
  background: #fff;
  border-color: rgba(19, 51, 49, 0.08);
  box-shadow: 0 4px 24px rgba(19, 51, 49, 0.04);
}

.cta-newsletter--light .cta-newsletter__eyebrow { color: #133331; }

.cta-newsletter--light .cta-newsletter__title { color: #000; }

.cta-newsletter--light .cta-newsletter__desc {
  color: #525252;
}

.cta-newsletter--light .cta-newsletter__note {
  color: #999;
}

/* Light variant — dark mode */
body.dark .cta-newsletter--light {
  background: #0f2422;
  border-top-color: rgba(203, 216, 172, 0.06);
}

body.dark .cta-newsletter--light .cta-newsletter__glass {
  background: rgba(203, 216, 172, 0.04);
  border-color: rgba(203, 216, 172, 0.1);
  box-shadow: none;
}

body.dark .cta-newsletter--light .cta-newsletter__eyebrow { color: #f9d87f; }
body.dark .cta-newsletter--light .cta-newsletter__title { color: #fff; }
body.dark .cta-newsletter--light .cta-newsletter__desc { color: rgba(255, 255, 255, 0.65); }

body.dark .cta-newsletter--light .form-control {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(203, 216, 172, 0.15);
  color: #fff;
}
body.dark .cta-newsletter--light .form-control::placeholder { color: rgba(255, 255, 255, 0.35); }
body.dark .cta-newsletter--light .form-control:focus {
  border-color: #cbd8ac;
  box-shadow: 0 0 0 3px rgba(203, 216, 172, 0.15);
}
body.dark .cta-newsletter--light .cta-newsletter__note { color: rgba(255, 255, 255, 0.3); }


/* ============================================
   GUIDES INDEX
   ============================================ */

/* 1. Hero — Dark, left-aligned */
.ghero {
  background: #133331;
  padding: 3.5rem 0 2.5rem;
}

.ghero__eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #cbd8ac;
  margin-bottom: 0.75rem;
}

.ghero__title {
  font-family: 'recoletabold';
  font-size: calc(1.8rem + 1.5vw);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.75rem;
}

.ghero__desc {
  font-size: 1.05rem; line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 0 1.25rem;
}

.ghero__count {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.ghero__count strong {
  color: #cbd8ac;
  font-weight: 700;
}

/* 2. Featured guide — Big horizontal card */
.gfeat {
  padding: 3rem 0 0;
}

.gfeat__label {
  display: inline-flex;
  align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #b8940a;
  margin-bottom: 1rem;
}
body.dark .gfeat__label { color: #f9d87f; }

.gfeat__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
body.dark .gfeat__card { background: #1a2e2c; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2); }

.gfeat__card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
body.dark .gfeat__card:hover { box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3); }

.gfeat__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.gfeat__card:hover .gfeat__image img {
  transform: scale(1.03);
}

.gfeat__body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gfeat__meta {
  display: flex;
  align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}

.gfeat__badge {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.gfeat__badge--diff {
  background: rgba(125, 173, 101, 0.1);
  color: #5a8a3c;
}
body.dark .gfeat__badge--diff { background: rgba(125, 173, 101, 0.12); color: #cbd8ac; }

.gfeat__reading {
  display: inline-flex;
  align-items: center; gap: 0.3rem;
  font-size: 0.75rem;
  color: #999;
}
body.dark .gfeat__reading { color: rgba(255, 255, 255, 0.5); }

.gfeat__title {
  font-family: 'recoletabold';
  font-size: 1.5rem;
  line-height: 1.25;
  color: #133331;
  margin-bottom: 0.75rem;
}
body.dark .gfeat__title { color: #fff; }

.gfeat__excerpt {
  font-size: 0.95rem; line-height: 1.65;
  color: #525252;
  margin-bottom: 1.5rem;
}
body.dark .gfeat__excerpt { color: rgba(255, 255, 255, 0.6); }

.gfeat__cta {
  display: inline-flex;
  align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600;
  color: #7dad65;
  transition: gap 0.3s ease;
}

.gfeat__card:hover .gfeat__cta { gap: 0.7rem; }

@media (max-width: 767px) {
  .gfeat__card {
    grid-template-columns: 1fr;
  }
  .gfeat__image { aspect-ratio: 16 / 9; }
  .gfeat__body { padding: 1.5rem; }
  .gfeat__title { font-size: 1.25rem; }
}

/* 3. Category pills */
.gcats {
  padding: 2.5rem 0 0;
}

.gcats__track {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gcats__pill {
  display: inline-flex;
  align-items: center; gap: 0.35rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(19, 51, 49, 0.1);
  background: transparent;
  color: #525252;
  cursor: pointer;
  transition: all 0.2s ease;
}
body.dark .gcats__pill {
  border-color: rgba(203, 216, 172, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.gcats__pill:hover {
  border-color: #7dad65;
  color: #133331;
}
body.dark .gcats__pill:hover { border-color: #cbd8ac; color: #fff; }

.gcats__pill--active {
  background: #133331;
  border-color: #133331;
  color: #fff;
}
body.dark .gcats__pill--active {
  background: #cbd8ac;
  border-color: #cbd8ac;
  color: #133331;
}

/* 4. Guides grid — 2 columns, tutorial cards */
.ggrid-wrap {
  padding: 2.5rem 0 4rem;
}

.ggrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1023px) {
  .ggrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .ggrid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.gcard {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
body.dark .gcard { background: #1a2e2c; box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15); }

.gcard:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
body.dark .gcard:hover { box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25); }

.gcard__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.gcard:hover .gcard__image img {
  transform: scale(1.04);
}

.gcard__badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  z-index: 1;
}

.gcard__badge--diff {
  background: rgba(125, 173, 101, 0.9);
  color: #fff;
}

.gcard__badge--inter {
  background: rgba(232, 167, 78, 0.9);
  color: #fff;
}

.gcard__badge--avance {
  background: rgba(200, 80, 50, 0.9);
  color: #fff;
}

.gcard__badge--season {
  background: rgba(19, 51, 49, 0.85);
  color: #cbd8ac;
}

.gcard__body {
  padding: 1rem 1.25rem 1.25rem;
}

.gcard__cat {
  display: block;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #7dad65;
  margin-bottom: 0.4rem;
}
body.dark .gcard__cat { color: #cbd8ac; }

.gcard__title {
  font-family: 'recoletabold';
  font-size: 1.05rem;
  line-height: 1.3;
  color: #133331;
  margin-bottom: 0.5rem;
}
body.dark .gcard__title { color: #fff; }

.gcard__excerpt {
  font-size: 0.85rem; line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
body.dark .gcard__excerpt { color: rgba(255, 255, 255, 0.55); }

.gcard__footer {
  display: flex;
  align-items: center; gap: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .gcard__footer { border-top-color: rgba(203, 216, 172, 0.06); }

.gcard__reading,
.gcard__chapters {
  display: inline-flex;
  align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-weight: 500;
  color: #999;
}
body.dark .gcard__reading,
body.dark .gcard__chapters { color: rgba(255, 255, 255, 0.4); }

/* 5. Newsletter CTA — Bold botanical */
.gnews {
  padding: 1rem 0 4rem;
}

.gnews__card {
  position: relative;
  background: #133331;
  border-radius: 20px;
  padding: 3.5rem;
  overflow: hidden;
  color: #fff;
}

/* Decorative botanical leaves — positioned absolutely */
.gnews__leaf {
  position: absolute;
  color: #cbd8ac;
  pointer-events: none;
}
.gnews__leaf--1 {
  top: -20px; right: 35%;
  transform: rotate(15deg);
}
.gnews__leaf--2 {
  bottom: -30px; left: 5%;
  transform: rotate(-20deg);
}
.gnews__leaf--3 {
  top: 20px; right: 8%;
}

.gnews__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
}

.gnews__eyebrow {
  display: inline-flex;
  align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #cbd8ac;
  margin-bottom: 1.25rem;
}

.gnews__title {
  font-family: 'recoletabold';
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}

.gnews__desc {
  font-size: 0.95rem; line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  margin-bottom: 1.5rem;
}

.gnews__field {
  display: flex;
  gap: 0;
  max-width: 420px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease;
}

.gnews__field:focus-within {
  border-color: #cbd8ac;
}

.gnews__input {
  flex: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  border: none;
  background: transparent;
  color: #fff;
  outline: none;
}
.gnews__input::placeholder { color: rgba(255, 255, 255, 0.35); }

.gnews__btn {
  display: inline-flex;
  align-items: center; gap: 0.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  padding: 0.85rem 1.5rem;
  background: #cbd8ac;
  color: #133331;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.gnews__btn:hover { background: #dde8c2; }

.gnews__legal {
  display: flex;
  align-items: center; gap: 0.35rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.75rem;
}

/* Email mockup — right side */
.gnews__preview {
  display: flex;
  justify-content: center;
}

.gnews__mockup {
  width: 100%;
  max-width: 310px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}

.gnews__card:hover .gnews__mockup {
  transform: rotate(0deg) translateY(-4px);
}

.gnews__mockup-header {
  display: flex;
  gap: 5px;
  padding: 10px 14px;
  background: #f5f5f5;
  border-bottom: 1px solid #eee;
}

.gnews__mockup-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddd;
}
.gnews__mockup-dot:first-child { background: #ff6058; }
.gnews__mockup-dot:nth-child(2) { background: #ffbd2e; }
.gnews__mockup-dot:nth-child(3) { background: #28c940; }

.gnews__mockup-body {
  padding: 16px;
}

.gnews__mockup-from {
  display: flex;
  align-items: center; gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.gnews__mockup-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #133331;
  color: #cbd8ac;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  flex-shrink: 0;
}

.gnews__mockup-name {
  font-size: 0.72rem; font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.gnews__mockup-email {
  font-size: 0.6rem;
  color: #999;
}

.gnews__mockup-subject {
  font-size: 0.78rem; font-weight: 700;
  color: #133331;
  margin-bottom: 14px;
  line-height: 1.3;
}

.gnews__mockup-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gnews__mockup-line {
  height: 6px;
  border-radius: 3px;
  background: #f0f0f0;
}
.gnews__mockup-line--title {
  height: 10px;
  width: 60%;
  background: #e0e0e0;
  margin-bottom: 4px;
}
.gnews__mockup-line--80 { width: 80%; }
.gnews__mockup-line--60 { width: 60%; }
.gnews__mockup-line--90 { width: 90%; }
.gnews__mockup-line--70 { width: 70%; }
.gnews__mockup-line--50 { width: 50%; }

.gnews__mockup-img {
  height: 60px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e8f5e2, #d4e8c4);
  margin: 6px 0;
}

@media (max-width: 1023px) {
  .gnews__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gnews__preview {
    justify-content: flex-start;
  }
  .gnews__mockup {
    max-width: 280px;
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .gnews__card { padding: 2rem; }
  .gnews__title { font-size: 1.5rem; }
  .gnews__preview { display: none; }
  .gnews__field { flex-direction: column; border-radius: 10px; }
  .gnews__btn { justify-content: center; border-radius: 0; }
}


/* ============================================
   CALENDAR MONTH PAGE
   ============================================ */

/* 1. Hero */
.calhero {
  background: #133331;
  padding: 2rem 0 3rem;
	margin-bottom: 3.5rem;
}

.calhero__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.calhero__arrow {
  display: inline-flex;
  align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.calhero__arrow:hover { color: #cbd8ac; }

.calhero__eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #cbd8ac;
  margin-bottom: 0.75rem;
}

.calhero__title {
  font-family: 'recoletabold';
  font-size: calc(2.5rem + 2vw);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0.75rem;
}

.calhero__year {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
}

.calhero__desc {
  font-size: 1.05rem; line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.calhero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.calhero__stat {
  display: inline-flex;
  align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.calhero__stat--sow svg { color: #e8a74e; }
.calhero__stat--sow { color: #e8a74e; }
.calhero__stat--plant svg { color: #7dad65; }
.calhero__stat--plant { color: #7dad65; }
.calhero__stat--harvest svg { color: #e07b5e; }
.calhero__stat--harvest { color: #e07b5e; }

/* 2. Action summary cards */
.calsum {
  padding: 3rem 0;
}

.calsum__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 767px) {
  .calsum__grid { grid-template-columns: 1fr; gap: 1rem; }
}

.calsum__card {
  display: flex;
  align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid transparent;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}
body.dark .calsum__card { background: #1a2e2c; box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15); }

.calsum__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.calsum__card--sow { border-left-color: #e8a74e; }
.calsum__card--plant { border-left-color: #7dad65; }
.calsum__card--harvest { border-left-color: #e07b5e; }

.calsum__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center; justify-content: center;
}
.calsum__card--sow .calsum__icon { background: rgba(232, 167, 78, 0.1); color: #e8a74e; }
.calsum__card--plant .calsum__icon { background: rgba(125, 173, 101, 0.1); color: #7dad65; }
.calsum__card--harvest .calsum__icon { background: rgba(200, 80, 50, 0.08); color: #e07b5e; }

.calsum__title {
  font-family: 'recoletabold';
  font-size: 0.95rem;
  color: #133331;
  margin-bottom: 0.2rem;
}
body.dark .calsum__title { color: #fff; }

.calsum__plants {
  font-size: 0.75rem; line-height: 1.5;
  color: #999;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
body.dark .calsum__plants { color: rgba(255, 255, 255, 0.4); }

.calsum__count {
  position: absolute;
  top: 0.75rem; right: 1rem;
  font-family: 'recoletabold';
  font-size: 1.5rem;
  color: rgba(19, 51, 49, 0.06);
}
body.dark .calsum__count { color: rgba(203, 216, 172, 0.06); }

/* 3. Visual calendar chart */
.calchart {
  padding: 0 0 3rem;
}

.calchart__heading {
  font-family: 'recoletabold';
  font-size: 1.25rem;
  color: #133331;
  margin-bottom: 0.75rem;
}
body.dark .calchart__heading { color: #fff; }

.calchart__legend {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.calchart__legend-item {
  display: inline-flex;
  align-items: center; gap: 0.35rem;
  font-size: 0.72rem; font-weight: 600;
  color: #666;
}
body.dark .calchart__legend-item { color: rgba(255, 255, 255, 0.5); }

.calchart__legend-item::before {
  content: '';
  width: 12px; height: 12px;
  border-radius: 3px;
}
.calchart__legend-item--sow::before { background: #e8a74e; }
.calchart__legend-item--plant::before { background: #7dad65; }
.calchart__legend-item--harvest::before { background: #e07b5e; }

.calchart__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  border: 1px solid rgba(19, 51, 49, 0.06);
  border-radius: 10px;
}
body.dark .calchart__scroll { border-color: rgba(203, 216, 172, 0.06); }

.calchart__table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  font-size: 0.72rem;
}

.calchart__table thead {
  background: #f8f8f6;
}
body.dark .calchart__table thead { background: #1a2e2c; }

.calchart__table th {
  padding: 0.6rem 0;
  font-weight: 600;
  color: #999;
  text-align: center;
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
  min-width: 22px;
}
body.dark .calchart__table th { color: rgba(255, 255, 255, 0.35); border-bottom-color: rgba(203, 216, 172, 0.06); }

.calchart__th-plant {
  text-align: left;
  padding-left: 1rem;
  min-width: 100px !important;
  color: #133331 !important;
  font-weight: 700 !important;
}
body.dark .calchart__th-plant { color: #fff !important; }

.calchart__th-saints {
  color: #c85032 !important;
  position: relative;
}
.calchart__th-saints::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #c85032;
}

.calchart__table tr {
  border-bottom: 1px solid rgba(19, 51, 49, 0.04);
}
body.dark .calchart__table tr { border-bottom-color: rgba(203, 216, 172, 0.04); }

.calchart__name {
  padding: 0.55rem 0.5rem 0.55rem 1rem;
  font-weight: 600;
  white-space: nowrap;
}
.calchart__name a {
  color: #133331;
  text-decoration: none;
  transition: color 0.2s ease;
}
.calchart__name a:hover { color: #7dad65; }
body.dark .calchart__name a { color: #fff; }

.calchart__bar {
  position: relative;
  padding: 0;
}
.calchart__bar::after {
  content: '';
  display: block;
  height: 8px;
  border-radius: 4px;
  margin: 0 1px;
}
.calchart__bar--sow::after { background: #e8a74e; }
.calchart__bar--plant::after { background: #7dad65; }
.calchart__bar--harvest::after { background: #e07b5e; }

.calchart__empty { padding: 0; }

.calchart__note {
  display: flex;
  align-items: flex-start; gap: 0.4rem;
  font-size: 0.78rem; line-height: 1.5;
  color: #999;
  margin-top: 1rem;
}
body.dark .calchart__note { color: rgba(255, 255, 255, 0.4); }

/* 4. Detail sections — semer / planter / récolter */
.caldet {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .caldet { border-top-color: rgba(203, 216, 172, 0.06); }

.caldet__header {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid;
}
.caldet__header--sow { border-left-color: #e8a74e; }
.caldet__header--plant { border-left-color: #7dad65; }
.caldet__header--harvest { border-left-color: #e07b5e; }

.caldet__title {
  font-family: 'recoletabold';
  font-size: 1.35rem;
  color: #133331;
  margin-bottom: 0.35rem;
}
body.dark .caldet__title { color: #fff; }

.caldet__intro {
  font-size: 0.92rem; line-height: 1.6;
  color: #666;
}
body.dark .caldet__intro { color: rgba(255, 255, 255, 0.5); }

.caldet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1023px) {
  .caldet__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .caldet__grid { grid-template-columns: 1fr; }
}

.caldet__card {
  display: flex;
  align-items: flex-start; gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
body.dark .caldet__card { background: #1a2e2c; box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12); }

.caldet__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.caldet__img {
  width: 56px; height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.caldet__name {
  font-family: 'recoletabold';
  font-size: 0.92rem;
  color: #133331;
  margin-bottom: 0.2rem;
}
body.dark .caldet__name { color: #fff; }

.caldet__note {
  font-size: 0.78rem; line-height: 1.55;
  color: #666;
}
body.dark .caldet__note { color: rgba(255, 255, 255, 0.5); }

/* 5. Travaux du mois */
.calwork {
  padding: 3rem 0;
  background: #f8f8f6;
}
body.dark .calwork { background: #0f2523; }

.calwork__title {
  font-family: 'recoletabold';
  font-size: 1.35rem;
  color: #133331;
  margin-bottom: 0.4rem;
}
body.dark .calwork__title { color: #fff; }

.calwork__intro {
  font-size: 0.92rem; line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
}
body.dark .calwork__intro { color: rgba(255, 255, 255, 0.5); }

.calwork__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .calwork__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.calwork__subtitle {
  display: flex;
  align-items: center; gap: 0.4rem;
  font-family: 'recoletabold';
  font-size: 0.95rem;
  color: #133331;
  margin-bottom: 0.75rem;
}
body.dark .calwork__subtitle { color: #fff; }
.calwork__subtitle svg { color: #7dad65; }

.calwork__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calwork__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.85rem; line-height: 1.55;
  color: #525252;
}
body.dark .calwork__list li { color: rgba(255, 255, 255, 0.6); }

.calwork__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #cbd8ac;
}

/* 6. Conseil de Tom */
.caltom {
  padding: 3rem 0;
}

.caltom__card {
  display: flex;
  align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: rgba(125, 173, 101, 0.06);
  border-left: 4px solid #7dad65;
  border-radius: 0 12px 12px 0;
}
body.dark .caltom__card { background: rgba(125, 173, 101, 0.05); }

.caltom__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.caltom__label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #7dad65;
  margin-bottom: 0.35rem;
}

.caltom__text {
  font-size: 0.92rem; line-height: 1.65;
  color: #525252;
}
body.dark .caltom__text { color: rgba(255, 255, 255, 0.6); }

/* 7. Bottom navigation */
.calnav {
  padding: 2rem 0 4rem;
}

.calnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(19, 51, 49, 0.08);
  border-bottom: 1px solid rgba(19, 51, 49, 0.08);
}
body.dark .calnav__inner { border-color: rgba(203, 216, 172, 0.08); }

.calnav__link {
  display: flex;
  align-items: center; gap: 0.6rem;
  text-decoration: none;
  color: #133331;
  transition: color 0.2s ease;
}
body.dark .calnav__link { color: #fff; }
.calnav__link:hover { color: #7dad65; }

.calnav__label {
  display: block;
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 0.1rem;
}
body.dark .calnav__label { color: rgba(255, 255, 255, 0.35); }

.calnav__month {
  display: block;
  font-family: 'recoletabold';
  font-size: 1rem;
}

.calnav__link--next { text-align: right; }

.calnav__center {
  display: inline-flex;
  align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600;
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}
.calnav__center:hover { color: #7dad65; }
body.dark .calnav__center { color: rgba(255, 255, 255, 0.4); }

/* Calendar — SEO editorial sections */

/* Intro SEO */
.calintro {
  padding: 3rem 0 0;
}

.calintro__content {
  max-width: 740px;
}

.calintro__content p {
  font-size: 0.95rem; line-height: 1.75;
  color: #525252;
  margin-bottom: 1rem;
}
body.dark .calintro__content p { color: rgba(255, 255, 255, 0.6); }

.calintro__content a {
  color: #7dad65;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Saints de Glace editorial */
.caledi {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .caledi { border-top-color: rgba(203, 216, 172, 0.06); }

.caledi__content {
  max-width: 740px;
}

.caledi__title {
  font-family: 'recoletabold';
  font-size: 1.35rem;
  color: #133331;
  margin-bottom: 1rem;
}
body.dark .caledi__title { color: #fff; }

.caledi__content p {
  font-size: 0.92rem; line-height: 1.7;
  color: #525252;
  margin-bottom: 1rem;
}
body.dark .caledi__content p { color: rgba(255, 255, 255, 0.6); }

.caledi__phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
@media (max-width: 767px) {
  .caledi__phases { grid-template-columns: 1fr; }
}

.caledi__phase {
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  border-left: 4px solid;
}

.caledi__phase--before {
  background: rgba(232, 167, 78, 0.05);
  border-left-color: #e8a74e;
}
body.dark .caledi__phase--before { background: rgba(232, 167, 78, 0.06); }

.caledi__phase--after {
  background: rgba(125, 173, 101, 0.05);
  border-left-color: #7dad65;
}
body.dark .caledi__phase--after { background: rgba(125, 173, 101, 0.06); }

.caledi__phase-title {
  display: flex;
  align-items: center; gap: 0.4rem;
  font-family: 'recoletabold';
  font-size: 0.92rem;
  color: #133331;
  margin-bottom: 0.5rem;
}
body.dark .caledi__phase-title { color: #fff; }

.caledi__phase--before .caledi__phase-title svg { color: #e8a74e; }
.caledi__phase--after .caledi__phase-title svg { color: #7dad65; }

.caledi__phase p {
  font-size: 0.85rem; line-height: 1.6;
  color: #666;
  margin: 0;
}
body.dark .caledi__phase p { color: rgba(255, 255, 255, 0.55); }

/* FAQ section */
.calfaq {
  padding: 3rem 0;
  background: #f8f8f6;
}
body.dark .calfaq { background: #0f2523; }

.calfaq__title {
  font-family: 'recoletabold';
  font-size: 1.35rem;
  color: #133331;
  margin-bottom: 1.5rem;
}
body.dark .calfaq__title { color: #fff; }

.calfaq__list {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calfaq__item {
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
  padding: 1.25rem 0;
}
body.dark .calfaq__item { border-bottom-color: rgba(203, 216, 172, 0.06); }

.calfaq__item:first-child { padding-top: 0; }

.calfaq__question {
  font-family: 'recoletabold';
  font-size: 1rem;
  color: #133331;
  margin-bottom: 0.5rem;
}
body.dark .calfaq__question { color: #fff; }

.calfaq__answer p {
  font-size: 0.88rem; line-height: 1.7;
  color: #525252;
  margin: 0;
}
body.dark .calfaq__answer p { color: rgba(255, 255, 255, 0.6); }

/* Guides liés */
.calguides {
  padding: 3rem 0;
}

.calguides__title {
  font-family: 'recoletabold';
  font-size: 1.25rem;
  color: #133331;
  margin-bottom: 1.25rem;
}
body.dark .calguides__title { color: #fff; }

.calguides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .calguides__grid { grid-template-columns: 1fr; }
}

.calguides__card {
  display: flex;
  align-items: flex-start; gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
body.dark .calguides__card { background: #1a2e2c; box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12); }

.calguides__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.calguides__img {
  width: 80px; height: 60px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.calguides__cat {
  display: block;
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #7dad65;
  margin-bottom: 0.15rem;
}

.calguides__name {
  font-family: 'recoletabold';
  font-size: 0.88rem;
  color: #133331;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
body.dark .calguides__name { color: #fff; }

.calguides__desc {
  font-size: 0.75rem; line-height: 1.5;
  color: #999;
}
body.dark .calguides__desc { color: rgba(255, 255, 255, 0.4); }

/* Sources E-E-A-T */
.calsources {
  padding: 2rem 0;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .calsources { border-top-color: rgba(203, 216, 172, 0.06); }

.calsources__title {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 0.75rem;
}
body.dark .calsources__title { color: rgba(255, 255, 255, 0.35); }

.calsources__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.calsources__link {
  display: inline-flex;
  align-items: center; gap: 0.35rem;
  font-size: 0.78rem;
  color: #7dad65;
  text-decoration: none;
  transition: color 0.2s ease;
}
.calsources__link:hover { color: #5a8a3c; }
body.dark .calsources__link { color: #cbd8ac; }

/* Enhanced detail section intro for 2-paragraph style */
.caldet__intro + .caldet__intro {
  margin-top: -0.25rem;
}

/* ============================================
   CALENDAR MONTH V2 — SEO 10/10
   ============================================ */

/* Hero split — image right */
.calhero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .calhero__grid { grid-template-columns: 1fr; }
  .calhero__image { display: none; }
}

.calhero__image {
  border-radius: 12px;
  overflow: hidden;
}
.calhero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.85;
}

.calhero__meta {
  display: flex; gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.calhero__meta-item {
  display: inline-flex;
  align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

/* Body layout — TOC + content */
.calbody {
  padding: 3rem 0 0;
}

.calbody__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .calbody__layout { grid-template-columns: 1fr; }
}

/* TOC Rail */
.caltoc {
  position: sticky;
  top: 5rem;
}
@media (max-width: 1023px) {
  .caltoc { display: none; }
}

.caltoc__label {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #999;
  margin-bottom: 0.75rem;
}
body.dark .caltoc__label { color: rgba(255, 255, 255, 0.35); }

.caltoc__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(19, 51, 49, 0.08);
}
body.dark .caltoc__nav { border-left-color: rgba(203, 216, 172, 0.08); }

.caltoc__link {
  display: block;
  padding: 0.35rem 0 0.35rem 1rem;
  font-size: 0.78rem;
  color: #666;
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
body.dark .caltoc__link { color: rgba(255, 255, 255, 0.45); }
.caltoc__link:hover { color: #7dad65; border-left-color: #7dad65; }

.caltoc__link--sub {
  padding-left: 1.75rem;
  font-size: 0.72rem;
}

.caltoc__download {
  display: flex;
  align-items: center; gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1rem;
  background: rgba(125, 173, 101, 0.08);
  border-radius: 8px;
  font-size: 0.72rem; font-weight: 600;
  color: #7dad65;
  text-decoration: none;
  transition: background 0.2s ease;
}
.caltoc__download:hover { background: rgba(125, 173, 101, 0.14); }

.calmain__image {
  width: 100%;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.calsection {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .calsection { border-bottom-color: rgba(203, 216, 172, 0.06); }

.calsection__title {
  font-family: 'recoletabold';
  font-size: 1.4rem;
  line-height: 1.25;
  color: #133331;
  margin-bottom: 1rem;
}
body.dark .calsection__title { color: #fff; }

.calsection p {
  font-size: 0.92rem; line-height: 1.75;
  color: #525252;
  margin-bottom: 1rem;
}
body.dark .calsection p { color: rgba(255, 255, 255, 0.6); }

.calsection a {
  color: #7dad65;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Summary cards inside content */
.calbody .calsum {
  padding: 0;
  margin-bottom: 2.5rem;
}

.calbody .calsum__grid,
.calbody .calsum {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

/* Plant detail cards (larger, with more text) */
.calplant {
  display: flex;
  align-items: flex-start; gap: 1.25rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
  margin-bottom: 1rem;
}
body.dark .calplant { background: #1a2e2c; box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12); }

.calplant__img {
  width: 72px; height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.calplant__name {
  font-family: 'recoletabold';
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.calplant__name a {
  color: #133331;
  text-decoration: none;
}
.calplant__name a:hover { color: #7dad65; }
body.dark .calplant__name a { color: #fff; }

.calplant__body p {
  font-size: 0.85rem; line-height: 1.65;
  color: #525252;
  margin: 0;
}
body.dark .calplant__body p { color: rgba(255, 255, 255, 0.55); }

/* HowTo Steps */
.calsteps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.5rem 0;
}

.calstep {
  display: flex;
  align-items: flex-start; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(19, 51, 49, 0.04);
}
body.dark .calstep { border-bottom-color: rgba(203, 216, 172, 0.04); }

.calstep:last-child { border-bottom: none; }

.calstep__num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #133331;
  color: #cbd8ac;
  display: flex;
  align-items: center; justify-content: center;
  font-family: 'recoletabold';
  font-size: 0.85rem;
}
body.dark .calstep__num { background: #cbd8ac; color: #133331; }

.calstep__title {
  font-family: 'recoletabold';
  font-size: 0.95rem;
  color: #133331;
  margin-bottom: 0.3rem;
}
body.dark .calstep__title { color: #fff; }

.calstep__body p {
  font-size: 0.85rem; line-height: 1.65;
  color: #525252;
  margin: 0;
}
body.dark .calstep__body p { color: rgba(255, 255, 255, 0.55); }

/* Errors */
.calerror {
  display: flex;
  align-items: flex-start; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(19, 51, 49, 0.04);
}
body.dark .calerror { border-bottom-color: rgba(203, 216, 172, 0.04); }

.calerror:last-child { border-bottom: none; }

.calerror__num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(200, 80, 50, 0.08);
  color: #c85032;
  display: flex;
  align-items: center; justify-content: center;
  font-family: 'recoletabold';
  font-size: 0.78rem;
}
body.dark .calerror__num { background: rgba(200, 80, 50, 0.12); color: #e07b5e; }

.calerror__title {
  font-family: 'recoletabold';
  font-size: 0.92rem;
  color: #133331;
  margin-bottom: 0.25rem;
}
body.dark .calerror__title { color: #fff; }

.calerror__body p {
  font-size: 0.85rem; line-height: 1.6;
  color: #525252;
  margin: 0;
}
body.dark .calerror__body p { color: rgba(255, 255, 255, 0.55); }

/* Regions */
.calregions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 767px) {
  .calregions { grid-template-columns: 1fr; }
}

.calregion {
  padding: 1.25rem;
  background: #f8f8f6;
  border-radius: 10px;
}
body.dark .calregion { background: #1a2e2c; }

.calregion__title {
  display: flex;
  align-items: center; gap: 0.4rem;
  font-family: 'recoletabold';
  font-size: 0.88rem;
  color: #133331;
  margin-bottom: 0.5rem;
}
body.dark .calregion__title { color: #fff; }
.calregion__title svg { color: #7dad65; }

.calregion p {
  font-size: 0.82rem; line-height: 1.6;
  color: #525252;
  margin: 0;
}
body.dark .calregion p { color: rgba(255, 255, 255, 0.55); }

/* Video embed */
.video-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
}
.video-embed__wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* Tom tip reusable */
.tom-tip {
  padding: 1.25rem 1.5rem;
  background: rgba(125, 173, 101, 0.06);
  border-left: 4px solid #7dad65;
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
}
body.dark .tom-tip { background: rgba(125, 173, 101, 0.05); }

.tom-tip__header {
  display: flex;
  align-items: center; gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.tom-tip__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.tom-tip__title {
  font-family: 'recoletabold';
  font-size: 0.85rem;
  color: #5a8a3c;
  margin: 0;
}
body.dark .tom-tip__title { color: #cbd8ac; }

.tom-tip__body p {
  font-size: 0.85rem; line-height: 1.65;
  color: #525252;
  margin: 0;
}
body.dark .tom-tip__body p { color: rgba(255, 255, 255, 0.55); }

/* Travaux inside calmain */
.calmain .calwork__grid {
  margin-top: 1.5rem;
}

/* Sources inside calmain */
.calsources__inner {
  padding-top: 1rem;
}

/* Calendar page — TOC layout */
.calpage { padding: 3rem 0; }

.calpage__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

.calpage__toc {
  position: sticky;
  top: 5rem;
}

.calpage__main > section {
  margin-bottom: 2.5rem;
}

/* Remove container padding from sections inside main */
.calpage__main .calsum,
.calpage__main .calchart,
.calpage__main .caldet,
.calpage__main .caledi,
.calpage__main .calwork,
.calpage__main .caltom,
.calpage__main .calfaq,
.calpage__main .calguides,
.calpage__main .calsources,
.calpage__main .callead {
  padding-left: 0;
  padding-right: 0;
}
.calpage__main .calwork,
.calpage__main .calfaq {
  padding: 2rem;
  border-radius: 12px;
}

@media (max-width: 1023px) {
  .calpage__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .calpage__toc { display: none; }
}

/* Hero grid with image */
.calhero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calhero__image {
  border-radius: 12px;
  overflow: hidden;
}

.calhero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 400px;
  border-radius: 12px;
}

.calhero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calhero__meta-item {
  display: inline-flex;
  align-items: center; gap: 0.3rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 767px) {
  .calhero__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .calhero__image { order: -1; }
}

/* Editorial prose in detail sections */
.caldet__editorial {
  margin-bottom: 1.5rem;
}

.caldet__editorial p {
  font-size: 0.92rem; line-height: 1.7;
  color: #525252;
  margin-bottom: 0.75rem;
}
body.dark .caldet__editorial p { color: rgba(255, 255, 255, 0.6); }

.caldet__editorial a { color: #7dad65; text-decoration: underline; text-underline-offset: 2px; }

/* Errors section */
.caledi__errors {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.caledi__error {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}
body.dark .caledi__error { background: #1a2e2c; }

.caledi__error-title {
  display: flex;
  align-items: center; gap: 0.6rem;
  font-family: 'recoletabold';
  font-size: 0.95rem;
  color: #133331;
  margin-bottom: 0.5rem;
}
body.dark .caledi__error-title { color: #fff; }

.caledi__error-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(200, 80, 50, 0.08);
  color: #c85032;
  font-size: 0.72rem; font-weight: 700;
  display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.caledi__error p {
  font-size: 0.88rem; line-height: 1.65;
  color: #525252;
  margin: 0;
}
body.dark .caledi__error p { color: rgba(255, 255, 255, 0.6); }

.caledi__error a { color: #7dad65; text-decoration: underline; text-underline-offset: 2px; }

/* Regions grid */
.caledi__regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.25rem 0;
}
@media (max-width: 767px) {
  .caledi__regions { grid-template-columns: 1fr; }
}

.caledi__region {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}
body.dark .caledi__region { background: #1a2e2c; }

.caledi__region-title {
  display: flex;
  align-items: center; gap: 0.4rem;
  font-family: 'recoletabold';
  font-size: 0.88rem;
  color: #133331;
  margin-bottom: 0.5rem;
}
body.dark .caledi__region-title { color: #fff; }
.caledi__region-title svg { color: #7dad65; }

.caledi__region p {
  font-size: 0.82rem; line-height: 1.6;
  color: #666;
  margin: 0;
}
body.dark .caledi__region p { color: rgba(255, 255, 255, 0.55); }

/* Lunar calendar */
.caledi__lunar {
  margin: 1.25rem 0;
}

.caledi__lunar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .caledi__lunar-row { grid-template-columns: 1fr; }
}

.caledi__lunar-type {
  padding: 1.25rem;
  border-radius: 10px;
  border-left: 4px solid;
}

.caledi__lunar-type--feuilles {
  background: rgba(125, 173, 101, 0.04);
  border-left-color: #7dad65;
}
.caledi__lunar-type--fruits {
  background: rgba(200, 80, 50, 0.04);
  border-left-color: #e07b5e;
}
.caledi__lunar-type--racines {
  background: rgba(139, 90, 43, 0.04);
  border-left-color: #8b5a2b;
}
.caledi__lunar-type--fleurs {
  background: rgba(180, 100, 180, 0.04);
  border-left-color: #b464b4;
}

.caledi__lunar-type h3 {
  font-family: 'recoletabold';
  font-size: 0.88rem;
  color: #133331;
  margin-bottom: 0.2rem;
}
body.dark .caledi__lunar-type h3 { color: #fff; }

.caledi__lunar-dates {
  font-size: 0.72rem; font-weight: 700;
  color: #999;
  margin-bottom: 0.5rem;
}

.caledi__lunar-type p:last-child {
  font-size: 0.82rem; line-height: 1.55;
  color: #666;
  margin: 0;
}
body.dark .caledi__lunar-type p:last-child { color: rgba(255, 255, 255, 0.5); }

/* Lead magnet CTA */
.callead {
  margin: 2rem 0;
}

.callead__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: #133331;
  border-radius: 14px;
  color: #fff;
}

.callead__eyebrow {
  display: inline-flex;
  align-items: center; gap: 0.35rem;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #cbd8ac;
  margin-bottom: 0.75rem;
}

.callead__title {
  font-family: 'recoletabold';
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.callead__desc {
  font-size: 0.85rem; line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  max-width: 380px;
}

.callead__btn {
  display: inline-flex;
  align-items: center; gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  padding: 0.7rem 1.5rem;
  background: #cbd8ac;
  color: #133331;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.callead__btn:hover { background: #dde8c2; }

.callead__visual {
  flex-shrink: 0;
}

.callead__pdf-preview {
  width: 120px; height: 160px;
  background: #fff;
  border-radius: 6px;
  padding: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
}

.callead__pdf-header {
  height: 16px;
  background: #133331;
  border-radius: 3px;
  margin-bottom: 10px;
}

.callead__pdf-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.callead__pdf-bar {
  height: 8px;
  border-radius: 4px;
}
.callead__pdf-bar--sow { background: #e8a74e; width: 80%; }
.callead__pdf-bar--plant { background: #7dad65; width: 65%; }
.callead__pdf-bar--harvest { background: #e07b5e; width: 50%; }

@media (max-width: 767px) {
  .callead__card { flex-direction: column; padding: 1.5rem; }
  .callead__visual { display: none; }
}

/* ============================================
   CALENDAR V2 — TOC + Content layout
   ============================================ */

/* Split hero */
.calhero--split .calhero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .calhero--split .calhero__grid { grid-template-columns: 1fr; }
}

.calhero__image {
  border-radius: 12px;
  overflow: hidden;
}
.calhero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
}
@media (max-width: 1023px) {
  .calhero__image { display: none; }
}

.calhero__meta-row {
  display: flex;
  align-items: center; gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.calhero__date,
.calhero__reading {
  display: inline-flex;
  align-items: center; gap: 0.3rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

/* TOC + Content two-column */
.calmain {
  padding: 3rem 0 0;
}

.calmain__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .calmain__layout { grid-template-columns: 1fr; }
}

/* TOC rail — sticky */
.caltoc {
  position: sticky;
  top: 100px;
}
@media (max-width: 1023px) {
  .caltoc { display: none; }
}

.caltoc__title {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #999;
  margin-bottom: 0.75rem;
}
body.dark .caltoc__title { color: rgba(255, 255, 255, 0.35); }

.caltoc__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(19, 51, 49, 0.06);
  padding-left: 0;
}
body.dark .caltoc__nav { border-left-color: rgba(203, 216, 172, 0.06); }

.caltoc__link {
  display: block;
  font-size: 0.78rem; font-weight: 500;
  color: #666;
  text-decoration: none;
  padding: 0.4rem 0 0.4rem 1rem;
  margin-left: -2px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}
body.dark .caltoc__link { color: rgba(255, 255, 255, 0.45); }

.caltoc__link:hover {
  color: #133331;
  border-left-color: #7dad65;
}
body.dark .caltoc__link:hover { color: #fff; border-left-color: #cbd8ac; }

/* Content area */
.calcontent {
  min-width: 0;
}

.calsec {
  margin-bottom: 3rem;
}

.calsec__lead {
  font-size: 1.05rem; line-height: 1.75;
  color: #333;
  margin-bottom: 1rem;
}
body.dark .calsec__lead { color: rgba(255, 255, 255, 0.7); }

.calsec p {
  font-size: 0.92rem; line-height: 1.75;
  color: #525252;
  margin-bottom: 1rem;
}
body.dark .calsec p { color: rgba(255, 255, 255, 0.6); }

.calsec a:not(.caldet__card):not(.calguides__card):not(.calsources__link) {
  color: #7dad65;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.calsec__h2 {
  font-family: 'recoletabold';
  font-size: 1.35rem;
  color: #133331;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(19, 51, 49, 0.06);
}
body.dark .calsec__h2 { color: #fff; border-bottom-color: rgba(203, 216, 172, 0.06); }

.calsec h3 {
  font-family: 'recoletabold';
  font-size: 1.05rem;
  color: #133331;
  margin: 2rem 0 0.75rem;
}
body.dark .calsec h3 { color: #fff; }

/* Inline summary cards (inside content column) */
.calsum--inline {
  padding: 0;
  margin-bottom: 3rem;
}

.calsum--inline .calsum__grid {
  padding: 0;
}

/* Inline work grid */
.calwork__grid--inline {
  margin-top: 1.5rem;
}

/* Errors grid */
.calerr__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.calerr__item {
  display: flex;
  align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  background: rgba(200, 80, 50, 0.03);
  border-radius: 10px;
  border-left: 3px solid #e07b5e;
}
body.dark .calerr__item { background: rgba(200, 80, 50, 0.05); }

.calerr__icon {
  flex-shrink: 0;
  color: #e07b5e;
  margin-top: 2px;
}

.calerr__title {
  font-family: 'recoletabold';
  font-size: 0.92rem;
  color: #133331;
  margin-bottom: 0.35rem;
}
body.dark .calerr__title { color: #fff; }

.calerr__body p {
  font-size: 0.85rem; line-height: 1.6;
  color: #666;
  margin: 0;
}
body.dark .calerr__body p { color: rgba(255, 255, 255, 0.5); }

/* Region cards */
.calreg__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.calreg__item {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}
body.dark .calreg__item { background: #1a2e2c; box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12); }

.calreg__title {
  display: flex;
  align-items: center; gap: 0.4rem;
  font-family: 'recoletabold';
  font-size: 0.92rem;
  color: #133331;
  margin-bottom: 0.5rem;
}
body.dark .calreg__title { color: #fff; }
.calreg__title svg { color: #7dad65; }

.calreg__item p {
  font-size: 0.85rem; line-height: 1.6;
  color: #666;
  margin: 0;
}
body.dark .calreg__item p { color: rgba(255, 255, 255, 0.55); }

/* Video embed */
.calvideo__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.calvideo__wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 12px;
}

.calvideo__caption {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.6rem;
}
body.dark .calvideo__caption { color: rgba(255, 255, 255, 0.35); }

/* Photo gallery */
.calgal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .calgal { grid-template-columns: 1fr 1fr; }
}

.calgal__item {
  margin: 0;
}

.calgal__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.calgal__item figcaption {
  font-size: 0.68rem; line-height: 1.4;
  color: #999;
  margin-top: 0.35rem;
}
body.dark .calgal__item figcaption { color: rgba(255, 255, 255, 0.35); }

/* Inline sources */
.calsources--inline {
  padding-top: 2rem;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .calsources--inline { border-top-color: rgba(203, 216, 172, 0.06); }

/* ============================================
   CALENDAR INDEX — Annual table + months nav
   ============================================ */

/* Annual table */
.caltable {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.caltable thead {
  background: #f8f8f6;
  position: sticky;
  top: 0;
  z-index: 2;
}
body.dark .caltable thead { background: #1a2e2c; }

.caltable th {
  padding: 0.7rem 0.4rem;
  font-weight: 700;
  color: #999;
  text-align: center;
  border-bottom: 2px solid rgba(19, 51, 49, 0.08);
  white-space: nowrap;
}
body.dark .caltable th { color: rgba(255, 255, 255, 0.4); border-bottom-color: rgba(203, 216, 172, 0.08); }

.caltable__th-plant {
  text-align: left;
  padding-left: 1rem;
  min-width: 120px;
  color: #133331 !important;
}
body.dark .caltable__th-plant { color: #fff !important; }

.caltable__cat-row td {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7dad65;
  padding: 1rem 0 0.4rem 1rem;
  border-bottom: 1px solid rgba(125, 173, 101, 0.15);
  background: transparent;
}
body.dark .caltable__cat-row td { color: #cbd8ac; border-bottom-color: rgba(203, 216, 172, 0.08); }

.caltable tr {
  border-bottom: 1px solid rgba(19, 51, 49, 0.04);
}
body.dark .caltable tr { border-bottom-color: rgba(203, 216, 172, 0.03); }

.caltable__name {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.caltable__name a {
  color: #133331;
  text-decoration: none;
  transition: color 0.2s ease;
}
.caltable__name a:hover { color: #7dad65; }
body.dark .caltable__name a { color: #fff; }

.caltable td {
  text-align: center;
  padding: 0.5rem 0.2rem;
  position: relative;
}

/* Color cells */
.ct-si, .ct-st, .ct-pl, .ct-re {
  position: relative;
}
.ct-si::after, .ct-st::after, .ct-pl::after, .ct-re::after {
  content: '';
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 3px;
  margin: 0 auto;
}

/* Semis intérieur — orange clair hachuré */
.ct-si::after {
  background: repeating-linear-gradient(
    135deg,
    #e8a74e,
    #e8a74e 2px,
    rgba(232, 167, 78, 0.3) 2px,
    rgba(232, 167, 78, 0.3) 4px
  );
}

/* Semis pleine terre — orange plein */
.ct-st::after {
  background: #e8a74e;
}

/* Plantation — vert */
.ct-pl::after {
  background: #7dad65;
}

/* Récolte — rouge/corail */
.ct-re::after {
  background: #e07b5e;
}

/* Legend extension for 4 types */
.calchart__legend-item--sowout::before { background: #e8a74e; }
.calchart__legend-item--sow::before {
  background: repeating-linear-gradient(
    135deg,
    #e8a74e,
    #e8a74e 2px,
    rgba(232, 167, 78, 0.3) 2px,
    rgba(232, 167, 78, 0.3) 4px
  );
}

/* Monthly navigation grid */
.calmonths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
@media (max-width: 1023px) {
  .calmonths { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .calmonths { grid-template-columns: repeat(2, 1fr); }
}

.calmonths__card {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(19, 51, 49, 0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
body.dark .calmonths__card { background: #1a2e2c; border-color: rgba(203, 216, 172, 0.06); }

.calmonths__card:hover {
  border-color: #7dad65;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.calmonths__card--active {
  border-color: #7dad65;
  background: rgba(125, 173, 101, 0.04);
}
body.dark .calmonths__card--active { border-color: #cbd8ac; background: rgba(203, 216, 172, 0.04); }

.calmonths__num {
  font-family: 'recoletabold';
  font-size: 1.5rem;
  color: rgba(19, 51, 49, 0.08);
  line-height: 1;
  margin-bottom: 0.25rem;
}
body.dark .calmonths__num { color: rgba(203, 216, 172, 0.08); }

.calmonths__name {
  font-family: 'recoletabold';
  font-size: 0.92rem;
  color: #133331;
  margin-bottom: 0.2rem;
}
body.dark .calmonths__name { color: #fff; }

.calmonths__hint {
  font-size: 0.68rem;
  color: #999;
  line-height: 1.4;
}
body.dark .calmonths__hint { color: rgba(255, 255, 255, 0.35); }

/* ============================================
   SOIGNER — Diagnostic + treatment pages
   ============================================ */

/* Diagnostic symptom cards — 3 col grid */
.diag__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 1023px) { .diag__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .diag__grid { grid-template-columns: 1fr; } }

.diag__card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(19, 51, 49, 0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
body.dark .diag__card { background: #1a2e2c; border-color: rgba(203, 216, 172, 0.06); }
.diag__card:hover { border-color: #7dad65; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

.diag__icon { color: #e07b5e; margin-bottom: 0.75rem; }
.diag__title { font-family: 'recoletabold'; font-size: 0.95rem; color: #133331; margin-bottom: 0.35rem; }
body.dark .diag__title { color: #fff; }
.diag__desc { font-size: 0.78rem; line-height: 1.55; color: #666; flex: 1; }
body.dark .diag__desc { color: rgba(255,255,255,0.5); }
.diag__causes { font-size: 0.68rem; font-weight: 600; color: #999; margin-top: 0.5rem; }

/* Problem cards — image + text horizontal */
.prob__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.prob__card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}
body.dark .prob__card { background: #1a2e2c; box-shadow: 0 1px 6px rgba(0,0,0,0.12); }
@media (max-width: 767px) { .prob__card { flex-direction: column; } }

.prob__image { flex-shrink: 0; }
.prob__image img { width: 160px; height: 120px; border-radius: 8px; object-fit: cover; }
@media (max-width: 767px) { .prob__image img { width: 100%; height: 180px; } }

.prob__name { font-family: 'recoletabold'; font-size: 1.05rem; color: #133331; margin-bottom: 0.3rem; }
body.dark .prob__name { color: #fff; }
.prob__latin { font-weight: 400; font-style: italic; color: #999; font-size: 0.85rem; }

.prob__sev {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}
.prob__sev--high { background: rgba(200,80,50,0.1); color: #c85032; }
.prob__sev--mid { background: rgba(232,167,78,0.1); color: #b8860b; }
.prob__sev--low { background: rgba(125,173,101,0.1); color: #5a8a3c; }

.prob__plants { font-size: 0.75rem; color: #999; margin-bottom: 0.5rem; }
body.dark .prob__plants { color: rgba(255,255,255,0.35); }

.prob__body p { font-size: 0.85rem; line-height: 1.65; color: #525252; margin-bottom: 0.5rem; }
body.dark .prob__body p { color: rgba(255,255,255,0.6); }

.prob__more { font-size: 0.82rem; font-weight: 600; color: #7dad65; text-decoration: none; }
.prob__more:hover { text-decoration: underline; }

/* Treatment cards — 4 col grid */
.treat__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 1023px) { .treat__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .treat__grid { grid-template-columns: 1fr; } }

.treat__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(19,51,49,0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
body.dark .treat__card { background: #1a2e2c; border-color: rgba(203,216,172,0.06); }
.treat__card:hover { border-color: #7dad65; transform: translateY(-2px); }

.treat__icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.treat__icon--green { background: rgba(125,173,101,0.1); color: #7dad65; }
.treat__icon--dark { background: rgba(19,51,49,0.08); color: #133331; }
body.dark .treat__icon--dark { background: rgba(255,255,255,0.06); color: #fff; }
.treat__icon--blue { background: rgba(100,149,237,0.1); color: #6495ed; }
.treat__icon--brown { background: rgba(160,120,80,0.1); color: #a07850; }

.treat__name { font-family: 'recoletabold'; font-size: 0.92rem; color: #133331; margin-bottom: 0.2rem; }
body.dark .treat__name { color: #fff; }
.treat__desc { font-size: 0.78rem; line-height: 1.5; color: #666; flex: 1; margin-bottom: 0.5rem; }
body.dark .treat__desc { color: rgba(255,255,255,0.5); }
.treat__tag { font-size: 0.62rem; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 0.06em; }

/* Step-by-step recipe */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.step__num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #133331;
  color: #cbd8ac;
  display: flex; align-items: center; justify-content: center;
  font-family: 'recoletabold';
  font-size: 1rem;
}
body.dark .step__num { background: #cbd8ac; color: #133331; }

.step__title {
  font-family: 'recoletabold';
  font-size: 1.05rem;
  color: #133331;
  margin-bottom: 0.5rem;
}
body.dark .step__title { color: #fff; }

.step__body p {
  font-size: 0.88rem; line-height: 1.7;
  color: #525252;
  margin-bottom: 0.75rem;
}
body.dark .step__body p { color: rgba(255,255,255,0.6); }

.step__img {
  width: 100%;
  border-radius: 10px;
  margin-top: 0.75rem;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

/* Tom tip block (used inline) */
.tom-tip {
  background: rgba(125,173,101,0.05);
  border-left: 4px solid #7dad65;
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
}
body.dark .tom-tip { background: rgba(125,173,101,0.04); }

.tom-tip__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.tom-tip__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.tom-tip__title {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7dad65;
}

.tom-tip__body p {
  font-size: 0.85rem; line-height: 1.6;
  color: #525252;
  margin: 0;
}
body.dark .tom-tip__body p { color: rgba(255,255,255,0.6); }

/* ============================================
   LEGAL PAGES — Mentions légales, confidentialité
   ============================================ */
.legal {
  padding: 3rem 0 4rem;
}

.legal__content {
  max-width: 740px;
}

.legal__header {
  margin-bottom: 2.5rem;
}

.legal__title {
  font-family: 'recoletabold';
  font-size: calc(1.5rem + 1vw);
  line-height: 1.15;
  color: #133331;
  margin-bottom: 0.5rem;
}
body.dark .legal__title { color: #fff; }

.legal__updated {
  font-size: 0.78rem;
  color: #999;
}
body.dark .legal__updated { color: rgba(255,255,255,0.4); }

.legal__section {
  margin-bottom: 2.5rem;
}

.legal__section h2 {
  font-family: 'recoletabold';
  font-size: 1.15rem;
  color: #133331;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(19,51,49,0.06);
}
body.dark .legal__section h2 { color: #fff; border-bottom-color: rgba(203,216,172,0.06); }

.legal__section h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #133331;
  margin: 1.5rem 0 0.5rem;
}
body.dark .legal__section h3 { color: #fff; }

.legal__section p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #525252;
  margin-bottom: 0.75rem;
}
body.dark .legal__section p { color: rgba(255,255,255,0.6); }

.legal__section a {
  color: #7dad65;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__section strong {
  color: #133331;
}
body.dark .legal__section strong { color: #fff; }

/* ============================================
   ABOUT PAGE — Tom le Jardinier story
   ============================================ */

/* Hero — Portrait split */
.about-hero {
  background: #133331;
  padding: 3rem 0 0;
  overflow: hidden;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
@media (max-width: 1023px) {
  .about-hero__grid { grid-template-columns: 1fr; }
}

.about-hero__text {
  padding-bottom: 3rem;
}

.about-hero__eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #cbd8ac;
  margin-bottom: 0.75rem;
}

.about-hero__title {
  font-family: 'recoletabold';
  font-size: calc(2rem + 2vw);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0.75rem;
}

.about-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.about-hero__intro {
  font-size: 1rem; line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}

.about-hero__portrait {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-hero__portrait img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 1023px) {
  .about-hero__portrait { display: none; }
  .about-hero__text { padding-bottom: 2rem; }
}

/* Story body */
.about-story {
  padding: 4rem 0;
}

.about-story__content {
  max-width: 680px;
  margin: 0 auto;
}

/* Chapters */
.about-chap {
  margin-bottom: 4rem;
  position: relative;
}

.about-chap__num {
  display: block;
  font-family: 'recoletabold';
  font-size: 3rem;
  line-height: 1;
  color: rgba(19, 51, 49, 0.05);
  margin-bottom: -0.5rem;
}
body.dark .about-chap__num { color: rgba(203, 216, 172, 0.05); }

.about-chap__title {
  font-family: 'recoletabold';
  font-size: 1.5rem;
  color: #133331;
  margin-bottom: 1.25rem;
}
body.dark .about-chap__title { color: #fff; }

.about-chap__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}
body.dark .about-chap__lead { color: rgba(255, 255, 255, 0.75); }

.about-chap p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #525252;
  margin-bottom: 1rem;
}
body.dark .about-chap p { color: rgba(255, 255, 255, 0.6); }

.about-chap em {
  color: #7dad65;
}

.about-chap a {
  color: #7dad65;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Photos in story */
.about-photo {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
}

.about-photo--wide img {
  aspect-ratio: 2 / 1;
}

.about-photo figcaption {
  font-size: 0.72rem;
  color: #999;
  margin-top: 0.5rem;
  line-height: 1.4;
}
body.dark .about-photo figcaption { color: rgba(255, 255, 255, 0.35); }

/* Connect / CTA section */
.about-connect {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(19, 51, 49, 0.06);
}
body.dark .about-connect { border-top-color: rgba(203, 216, 172, 0.06); }

@media (max-width: 767px) {
  .about-connect { flex-direction: column; }
}

.about-connect__label {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 0.6rem;
}
body.dark .about-connect__label { color: rgba(255, 255, 255, 0.35); }

.about-connect__links {
  display: flex;
  gap: 0.75rem;
}

.about-connect__links a {
  display: flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(19, 51, 49, 0.04);
  color: #133331;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
body.dark .about-connect__links a { background: rgba(203, 216, 172, 0.06); color: #cbd8ac; }

.about-connect__links a:hover {
  background: #133331;
  color: #fff;
}
body.dark .about-connect__links a:hover { background: #cbd8ac; color: #133331; }

.about-connect__cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-connect__btn {
  display: inline-flex;
  align-items: center; gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #133331;
  color: #fff;
}
.about-connect__btn:hover { background: #1a4744; }
body.dark .about-connect__btn { background: #cbd8ac; color: #133331; }

.about-connect__btn--outline {
  background: transparent;
  border: 1px solid rgba(19, 51, 49, 0.12);
  color: #133331;
}
.about-connect__btn--outline:hover { border-color: #7dad65; color: #7dad65; }
body.dark .about-connect__btn--outline { border-color: rgba(203, 216, 172, 0.12); color: #cbd8ac; }

/* ============================================
   BLOG CATEGORY PAGE
   ============================================ */

/* Category hero — Split with image */
.cathero {
  background: #133331;
  padding: 3rem 0;
  overflow: hidden;
}

.cathero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .cathero__grid { grid-template-columns: 1fr; }
}

.cathero__badge {
  display: inline-flex;
  align-items: center; gap: 0.35rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.cathero__badge i {
  font-size: 0.85rem;
}

.cathero__title {
  font-family: 'recoletabold';
  font-size: calc(1.8rem + 1.5vw);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cathero__accent {
  display: inline;
}

.cathero__desc {
  font-size: 1.05rem; line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 1.25rem;
}

.cathero__meta {
  display: flex;
  align-items: center; gap: 0.5rem;
  font-size: 0.78rem;
}

.cathero__count {
  font-weight: 700;
}

.cathero__count strong {
  font-size: 1.1rem;
}

.cathero__sep {
  color: rgba(255, 255, 255, 0.2);
}

.cathero__updated {
  color: rgba(255, 255, 255, 0.4);
}

.cathero__image {
  border-radius: 14px;
  overflow: hidden;
}

.cathero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

@media (max-width: 1023px) {
  .cathero__image { display: none; }
}

/* Filter chips — with Phosphor icons + color */
.filter-chip {
  display: inline-flex;
  align-items: center; gap: 0.3rem;
}

.filter-chip i {
  font-size: 0.85rem;
  opacity: 0.5;
}

.filter-chip--active i {
  opacity: 1;
}

/* Active chip uses --chip-color custom property */
.filter-chip--active {
  border-color: var(--chip-color, #133331);
  background: var(--chip-color, #133331);
  color: #fff;
}

.filter-chip--active:hover {
  background: var(--chip-color, #133331);
  color: #fff;
}

body.dark .filter-chip--active {
  background: var(--chip-color, #cbd8ac);
  border-color: var(--chip-color, #cbd8ac);
  color: #133331;
}

/* Card category badge with icon */
.card__cat i {
  font-size: 0.8rem;
  vertical-align: -1px;
}

/* Featured card category with icon */
.card-featured__cat i {
  font-size: 0.85rem;
  vertical-align: -1px;
  margin-right: 0.15rem;
}

/* Category intro — SEO editorial text */
.catintro {
  padding: 2.5rem 0 0;
}

.catintro__content {
  max-width: 740px;
}

.catintro__content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #525252;
  margin-bottom: 1rem;
}
body.dark .catintro__content p { color: rgba(255, 255, 255, 0.6); }

.catintro__content a {
  color: #7dad65;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.catintro__content strong {
  color: #133331;
}
body.dark .catintro__content strong { color: #fff; }

/* Related section */
.catrelated {
  padding: 2.5rem 0 1rem;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .catrelated { border-top-color: rgba(203, 216, 172, 0.06); }

.catrelated__title {
  font-family: 'recoletabold';
  font-size: 1.15rem;
  color: #133331;
  margin-bottom: 1.25rem;
}
body.dark .catrelated__title { color: #fff; }

/* Hero count */
.page-hero__count {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
}
.page-hero__count strong {
  color: #cbd8ac;
  font-weight: 700;
}

/* Empty state */
.catintro__empty {
  text-align: center;
  padding: 4rem 0;
}

.catintro__empty p {
  font-size: 1rem;
  color: #999;
  margin: 1rem 0;
}
body.dark .catintro__empty p { color: rgba(255, 255, 255, 0.4); }

.catintro__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7dad65;
  text-decoration: none;
}
.catintro__back:hover { text-decoration: underline; }

/* Card date */
.card__date {
  display: block;
  font-size: 0.72rem;
  color: #999;
  margin-top: 0.5rem;
}
body.dark .card__date { color: rgba(255, 255, 255, 0.35); }

/* Pagination disabled state */
.pagination__item--disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ============================================
   TASK TEMPLATE — CSS Additions
   Append to your existing pages.css
   ============================================ */


/* ── Quick Answer (inline after byline) ────── */

.task-quickanswer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
  background: rgba(125, 173, 101, 0.04);
  border: 1px solid rgba(125, 173, 101, 0.12);
  border-radius: 12px;
}
body.dark .task-quickanswer { background: rgba(125, 173, 101, 0.03); border-color: rgba(125, 173, 101, 0.08); }

.task-quickanswer__icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: #7dad65;
  color: #fff;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem;
}

.task-quickanswer__title {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #7dad65;
  margin-bottom: 0.3rem;
}

.task-quickanswer__body p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #525252;
  margin: 0;
}
body.dark .task-quickanswer__body p { color: rgba(255, 255, 255, 0.6); }


/* ── Compare Cards V2 ────────────────────── */

.task-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}
@media (max-width: 767px) { .task-compare { grid-template-columns: 1fr; } }

.task-compare__card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(19, 51, 49, 0.06);
  transition: box-shadow 0.3s ease;
}
body.dark .task-compare__card { border-color: rgba(203, 216, 172, 0.06); }

.task-compare__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.task-compare__header {
  display: flex;
  align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  font-family: 'recoletabold';
  font-size: 1rem;
}
.task-compare__header small { font-weight: 400; opacity: 0.5; font-size: 0.78rem; margin-left: 0.15rem; }
.task-compare__header i { font-size: 1.25rem; }

.task-compare__card--non-rem .task-compare__header {
  background: linear-gradient(135deg, rgba(232, 167, 78, 0.08), rgba(232, 167, 78, 0.03));
  color: #b8860b;
  border-bottom: 2px solid rgba(232, 167, 78, 0.15);
}
.task-compare__card--rem .task-compare__header {
  background: linear-gradient(135deg, rgba(125, 173, 101, 0.08), rgba(125, 173, 101, 0.03));
  color: #5a8a3c;
  border-bottom: 2px solid rgba(125, 173, 101, 0.15);
}
body.dark .task-compare__card--non-rem .task-compare__header { color: #e8a74e; border-bottom-color: rgba(232, 167, 78, 0.12); }
body.dark .task-compare__card--rem .task-compare__header { color: #cbd8ac; border-bottom-color: rgba(125, 173, 101, 0.12); }

.task-compare__body {
  padding: 1.25rem;
}

.task-compare__body p {
  font-size: 0.88rem; line-height: 1.65;
  margin-bottom: 0.5rem;
}

.task-compare__highlight {
  font-size: 0.95rem !important;
  font-weight: 600;
  margin-bottom: 0.6rem !important;
}
.task-compare__card--non-rem .task-compare__highlight { color: #b8860b; }
.task-compare__card--rem .task-compare__highlight { color: #5a8a3c; }
body.dark .task-compare__card--non-rem .task-compare__highlight { color: #e8a74e; }
body.dark .task-compare__card--rem .task-compare__highlight { color: #cbd8ac; }

.task-compare__body p i.ph-calendar-blank {
  font-size: 0.85rem;
  vertical-align: -1px;
  margin-right: 0.15rem;
  opacity: 0.6;
}

.task-compare__varieties {
  display: flex;
  align-items: center; gap: 0.3rem;
  font-size: 0.75rem !important;
  color: #999 !important;
  margin-top: 0.85rem !important;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(19, 51, 49, 0.05);
}
.task-compare__varieties i { font-size: 0.78rem; opacity: 0.5; }
body.dark .task-compare__varieties { border-top-color: rgba(203, 216, 172, 0.04); }


/* ── Calendar Visual (12 months, uniform) ──── */

.task-calendar-visual {
  margin: 1.75rem 0 1rem;
  overflow-x: auto;
  border: 1px solid rgba(19, 51, 49, 0.08);
  border-radius: 12px;
}
body.dark .task-calendar-visual { border-color: rgba(203, 216, 172, 0.06); }

.task-calendar-visual__table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.78rem;
  table-layout: fixed;
}

.task-calendar-visual__table th {
  padding: 0.65rem 0;
  font-weight: 700;
  font-size: 0.72rem;
  color: #999;
  text-align: center;
  background: #f8f8f6;
  border-bottom: 2px solid rgba(19, 51, 49, 0.06);
}
body.dark .task-calendar-visual__table th { background: #1a2e2c; color: rgba(255, 255, 255, 0.35); border-bottom-color: rgba(203, 216, 172, 0.06); }

/* First column — left aligned, fixed width */
.task-calendar-visual__plant {
  width: 200px !important;
  text-align: left !important;
  padding-left: 1rem !important;
  color: #133331 !important;
  font-weight: 700 !important;
}
body.dark .task-calendar-visual__plant { color: #fff !important; }

/* All month columns = equal width */
.task-calendar-visual__table th:not(.task-calendar-visual__plant),
.task-calendar-visual__table td:not(.task-calendar-visual__label) {
  width: calc((100% - 200px) / 12);
}

.task-calendar-visual__label {
  width: 200px;
  padding: 0.55rem 0.5rem 0.55rem 1rem;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
  color: #133331;
}
body.dark .task-calendar-visual__label { color: #fff; }
.task-calendar-visual__label i { font-size: 0.82rem; margin-right: 0.25rem; vertical-align: -1px; }

.task-calendar-visual__table tr { border-bottom: 1px solid rgba(19, 51, 49, 0.04); }
body.dark .task-calendar-visual__table tr { border-bottom-color: rgba(203, 216, 172, 0.03); }

.task-calendar-visual__table td {
  text-align: center;
  padding: 0.55rem 0.15rem;
}

.tvc { position: relative; }
.tvc::after {
  content: '';
  display: block;
  width: 85%;
  height: 10px;
  border-radius: 5px;
  margin: 0 auto;
}
.tvc--cut::after { background: #7dad65; }
.tvc--light::after { background: #e8a74e; }
.tvc--harvest::after { background: #e07b5e; }

/* Legend — horizontal pills */
.task-calendar-visual__legend {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 1rem;
  background: #fafaf8;
  border-top: 1px solid rgba(19, 51, 49, 0.04);
  border-radius: 0 0 12px 12px;
}
body.dark .task-calendar-visual__legend { background: rgba(19, 51, 49, 0.3); border-top-color: rgba(203, 216, 172, 0.04); }

.task-calendar-visual__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #666;
}
body.dark .task-calendar-visual__legend span { color: rgba(255, 255, 255, 0.45); }

.task-calendar-visual__dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 4px;
}
.task-calendar-visual__dot--cut { background: #7dad65; }
.task-calendar-visual__dot--light { background: #e8a74e; }
.task-calendar-visual__dot--harvest { background: #e07b5e; }


/* ── Tools Grid ──────────────────────────── */

.task-tools {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.task-tool {
  display: flex;
  align-items: center; gap: 1rem;
  padding: 0.85rem 1.15rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(19, 51, 49, 0.05);
  transition: border-color 0.2s ease;
}
body.dark .task-tool { background: #1a2e2c; border-color: rgba(203, 216, 172, 0.05); }
.task-tool:hover { border-color: rgba(125, 173, 101, 0.2); }

.task-tool__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(19, 51, 49, 0.04);
  color: #7dad65;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
body.dark .task-tool__icon { background: rgba(203, 216, 172, 0.06); }

.task-tool__body h4 { font-size: 0.88rem; font-weight: 700; color: #133331; margin: 0 0 0.1rem; }
body.dark .task-tool__body h4 { color: #fff; }
.task-tool__body p { font-size: 0.82rem; line-height: 1.55; color: #666; margin: 0; }
body.dark .task-tool__body p { color: rgba(255, 255, 255, 0.5); }


/* ── Steps ───────────────────────────────── */

.task-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 1.75rem 0;
  padding-left: 0;
}

.task-step {
  display: flex;
  align-items: flex-start; gap: 1rem;
}

.task-step__num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #133331;
  color: #cbd8ac;
  display: flex; align-items: center; justify-content: center;
  font-family: 'recoletabold';
  font-size: 0.92rem;
  margin-top: 2px;
}
body.dark .task-step__num { background: #cbd8ac; color: #133331; }

.task-step__body { flex: 1; min-width: 0; }
.task-step__body h4 { font-family: 'recoletabold'; font-size: 1rem; color: #133331; margin: 0 0 0.4rem; }
body.dark .task-step__body h4 { color: #fff; }
.task-step__body p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.6rem; }


/* ── Before / After ──────────────────────── */

.task-beforeafter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 767px) { .task-beforeafter { grid-template-columns: 1fr; } }

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

.task-beforeafter__label {
  display: inline-flex;
  align-items: center; gap: 0.35rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.task-beforeafter__label--before { background: rgba(200, 80, 50, 0.08); color: #c85032; }
.task-beforeafter__label--after { background: rgba(125, 173, 101, 0.08); color: #5a8a3c; }

.task-beforeafter__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.task-beforeafter__item p { font-size: 0.78rem; line-height: 1.5; color: #666; }
body.dark .task-beforeafter__item p { color: rgba(255, 255, 255, 0.5); }


/* ── Callouts (info, warning, danger) ─────── */

.callout {
  display: flex;
  align-items: flex-start; gap: 0.85rem;
  padding: 1.15rem 1.35rem;
  border-radius: 10px;
  border-left: 4px solid;
  margin: 1.5rem 0;
}

.callout__icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  margin-top: 1px;
}

.callout__body { flex: 1; min-width: 0; }

.callout__title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #133331;
}
body.dark .callout__title { color: #fff; }

.callout__body p {
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

/* Info */
.callout--info {
  background: rgba(100, 149, 237, 0.04);
  border-left-color: #6495ed;
}
body.dark .callout--info { background: rgba(100, 149, 237, 0.05); }
.callout--info .callout__icon { color: #6495ed; }

/* Warning */
.callout--warning {
  background: rgba(232, 167, 78, 0.04);
  border-left-color: #e8a74e;
}
body.dark .callout--warning { background: rgba(232, 167, 78, 0.05); }
.callout--warning .callout__icon { color: #e8a74e; }

/* Danger */
.callout--danger {
  background: rgba(200, 80, 50, 0.04);
  border-left-color: #c85032;
}
body.dark .callout--danger { background: rgba(200, 80, 50, 0.05); }
.callout--danger .callout__icon { color: #c85032; }


/* ── Errors Grid V2 ──────────────────────── */

.calerr__grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.calerr__item {
  display: flex;
  align-items: flex-start; gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(19, 51, 49, 0.04);
  transition: border-color 0.2s ease;
}
body.dark .calerr__item { background: #1a2e2c; border-color: rgba(203, 216, 172, 0.04); }

.calerr__item:hover { border-color: rgba(200, 80, 50, 0.15); }

.calerr__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* Danger errors (prohibit) get red icon bg */
.calerr__icon .ph-prohibit {
  color: #c85032;
}
.calerr__item:has(.ph-prohibit) .calerr__icon {
  background: rgba(200, 80, 50, 0.06);
}

/* Warning errors get orange icon bg */
.calerr__icon .ph-warning {
  color: #e8a74e;
}
.calerr__item:has(.ph-warning) .calerr__icon {
  background: rgba(232, 167, 78, 0.06);
}

.calerr__body { flex: 1; min-width: 0; }

.calerr__title {
  font-family: 'recoletabold';
  font-size: 0.92rem;
  color: #133331;
  margin-bottom: 0.3rem;
}
body.dark .calerr__title { color: #fff; }

.calerr__body p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
body.dark .calerr__body p { color: rgba(255, 255, 255, 0.5); }


/* ── FAQ (simple visible, same as posts/show) ── */

.faq-section {
  margin: 1rem 0 2rem;
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .faq-item { border-bottom-color: rgba(203, 216, 172, 0.06); }

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }

.faq-item__question {
  font-family: 'recoletabold';
  font-size: 1rem;
  color: #133331;
  margin-bottom: 0.5rem;
}
body.dark .faq-item__question { color: #fff; }

.faq-item__answer {
  display: block; /* always visible, no accordion */
}

.faq-item__answer p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #525252;
  margin: 0;
}
body.dark .faq-item__answer p { color: rgba(255, 255, 255, 0.6); }


/* ── Tom Tip (inside prose) ─────────────── */

.tom-tip {
  background: rgba(125, 173, 101, 0.04);
  border-left: 4px solid #7dad65;
  border-radius: 0 10px 10px 0;
  padding: 1.15rem 1.35rem;
  margin: 1.5rem 0;
}
body.dark .tom-tip { background: rgba(125, 173, 101, 0.03); }

.tom-tip__header {
  display: flex;
  align-items: center; gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.tom-tip__avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }

.tom-tip__title {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #7dad65;
}

.tom-tip__body p {
  font-size: 0.88rem; line-height: 1.65;
  color: #525252;
  margin: 0;
}
body.dark .tom-tip__body p { color: rgba(255, 255, 255, 0.6); }


/* ── Checklist (printable) ──────────────── */

.task-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.75rem 0;
  padding: 1.75rem;
  background: #f9f9f7;
  border-radius: 14px;
  border: 1px dashed rgba(19, 51, 49, 0.1);
}
body.dark .task-checklist { background: #0f2523; border-color: rgba(203, 216, 172, 0.08); }
@media (max-width: 767px) { .task-checklist { grid-template-columns: 1fr; padding: 1.25rem; } }
.task-checklist__section:last-child { grid-column: 1 / -1; }

.task-checklist__section h3 {
  display: flex;
  align-items: center; gap: 0.4rem;
  font-size: 0.88rem !important;
  font-weight: 700;
  margin: 0 0 0.65rem !important;
  color: #133331;
}
body.dark .task-checklist__section h3 { color: #fff; }
.task-checklist__section h3 i { color: #7dad65; font-size: 1.05rem; }

.task-checklist__section ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 0.4rem;
}

.task-checklist__section li {
  display: flex;
  align-items: flex-start; gap: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #525252;
}
body.dark .task-checklist__section li { color: rgba(255, 255, 255, 0.6); }

.task-checklist__section li i {
  color: #cbd8ac;
  font-size: 0.88rem;
  margin-top: 1px;
  flex-shrink: 0;
}

@media print {
  .task-checklist { break-inside: avoid; border: 2px solid #333; background: #fff; }
  .task-checklist__section li i { border: 1.5px solid #333; width: 13px; height: 13px; }
}

/* ============================================
   PLANT CATEGORY HUB — /potager/legumes-fruits/
   Append to your existing pages.css
   ============================================ */

/* ── Plant cards grid — 3 columns ── */

.planthub__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1023px) { .planthub__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .planthub__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .planthub__grid { grid-template-columns: 1fr; } }

.planthub__card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(19, 51, 49, 0.05);
  transition: all 0.25s ease;
}
body.dark .planthub__card { background: #1a2e2c; border-color: rgba(203, 216, 172, 0.05); }

.planthub__card:hover {
  border-color: rgba(125, 173, 101, 0.25);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

/* Image */
.planthub__img-wrap {
  position: relative;
  overflow: hidden;
}

.planthub__img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.planthub__card:hover .planthub__img-wrap img {
  transform: scale(1.04);
}

/* Difficulty badge */
.planthub__difficulty {
  position: absolute;
  top: 0.65rem; right: 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  backdrop-filter: blur(6px);
}

.planthub__difficulty--facile {
  background: rgba(125, 173, 101, 0.85);
  color: #fff;
}

.planthub__difficulty--moyen {
  background: rgba(232, 167, 78, 0.85);
  color: #fff;
}

.planthub__difficulty--difficile {
  background: rgba(200, 80, 50, 0.85);
  color: #fff;
}

/* Body */
.planthub__body {
  padding: 1rem 1.15rem 1.15rem;
}

.planthub__name {
  font-family: 'recoletabold';
  font-size: 1.05rem;
  color: #133331;
  margin-bottom: 0.1rem;
}
body.dark .planthub__name { color: #fff; }

.planthub__latin {
  font-size: 0.72rem;
  font-style: italic;
  color: #999;
  margin-bottom: 0.75rem;
}
body.dark .planthub__latin { color: rgba(255, 255, 255, 0.35); }

/* Tags row */
.planthub__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.planthub__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
}

.planthub__tag i { font-size: 0.72rem; }

.planthub__tag--sow {
  background: rgba(232, 167, 78, 0.08);
  color: #b8860b;
}
body.dark .planthub__tag--sow { background: rgba(232, 167, 78, 0.1); color: #e8a74e; }

.planthub__tag--plant {
  background: rgba(125, 173, 101, 0.08);
  color: #5a8a3c;
}
body.dark .planthub__tag--plant { background: rgba(125, 173, 101, 0.1); color: #cbd8ac; }

.planthub__tag--harvest {
  background: rgba(200, 80, 50, 0.08);
  color: #c85032;
}
body.dark .planthub__tag--harvest { background: rgba(200, 80, 50, 0.1); color: #e07b5e; }


/* ── Editorial section ── */

.cathub-editorial {
  padding: 3rem 0;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .cathub-editorial { border-top-color: rgba(203, 216, 172, 0.06); }

.cathub-editorial__content {
  max-width: 740px;
}

.cathub-editorial__content h2 {
  font-family: 'recoletabold';
  font-size: 1.35rem;
  color: #133331;
  margin-bottom: 0.75rem;
}
body.dark .cathub-editorial__content h2 { color: #fff; }

.cathub-editorial__content h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #133331;
  margin: 2rem 0 0.5rem;
}
body.dark .cathub-editorial__content h3 { color: #fff; }

.cathub-editorial__content h3 i {
  font-size: 1.1rem;
  color: #7dad65;
}

.cathub-editorial__content p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #525252;
  margin-bottom: 0.85rem;
}
body.dark .cathub-editorial__content p { color: rgba(255, 255, 255, 0.6); }

.cathub-editorial__content strong {
  color: #133331;
}
body.dark .cathub-editorial__content strong { color: #fff; }


/* ── FAQ section ── */

.cathub-faq {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .cathub-faq { border-top-color: rgba(203, 216, 172, 0.06); }

.cathub-faq__content {
  max-width: 740px;
}

.cathub-faq__content h2 {
  font-family: 'recoletabold';
  font-size: 1.2rem;
  color: #133331;
  margin-bottom: 1rem;
}
body.dark .cathub-faq__content h2 { color: #fff; }


/* ── Related guides ── */

.cathub-related {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(19, 51, 49, 0.06);
}
body.dark .cathub-related { border-top-color: rgba(203, 216, 172, 0.06); }

.cathub-related__title {
  font-family: 'recoletabold';
  font-size: 1.15rem;
  color: #133331;
  margin-bottom: 1.25rem;
}
body.dark .cathub-related__title { color: #fff; }

.cal-month-nav { padding: 1.5rem 0; }
.cal-month-nav__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  max-width: 900px;
  margin: 0 auto;
}
.cal-month-nav__btn {
  display: flex;
  flex-direction: column;
  border-radius: .6rem;
  border: .5px solid var(--c-border);
  background: var(--c-bg-card);
  text-decoration: none;
  color: var(--c-text-main);
  overflow: hidden;
  transition: border-color .15s, transform .1s;
}
.cal-month-nav__btn:hover { border-color: var(--c-primary); transform: translateY(-1px); }
.cal-month-nav__accent { height: 3px; flex-shrink: 0; }
.cal-month-nav__body {
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cal-month-nav__btn--next .cal-month-nav__body { align-items: flex-end; text-align: right; }
.cal-month-nav__dir {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-text-muted);
}
.cal-month-nav__btn--next .cal-month-nav__dir { flex-direction: row-reverse; }
.cal-month-nav__name { font-size: .88rem; font-weight: 600; line-height: 1.3; }
.cal-month-nav__season { font-size: .75rem; display: flex; align-items: center; gap: .2rem; }
.cal-month-nav__btn--next .cal-month-nav__season { flex-direction: row-reverse; }

@media (max-width: 480px) {
  .cal-month-nav__inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   Calendrier — index.blade.php
   À merger dans rte.css ou charger séparément
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Mois en cours ────────────────────────────────────────────────────── */
.cal-current-wrap {
  padding: 1.25rem 0 .5rem;
}

.cal-current {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.25rem 1.1rem 1.5rem;
  border-radius: .75rem;
  border: 1px solid color-mix(in srgb, var(--season-color) 35%, transparent);
  background: color-mix(in srgb, var(--season-color) 6%, var(--c-bg-card, #fff));
  text-decoration: none;
  color: var(--c-text-main);
  position: relative;
  overflow: hidden;
  transition: border-color .15s, transform .1s;
}
.cal-current:hover { transform: translateY(-1px); }

.cal-current__bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--season-color);
  border-radius: 4px 0 0 4px;
}

.cal-current__body { flex: 1; min-width: 0; }

.cal-current__badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--season-color) 15%, transparent);
  color: color-mix(in srgb, var(--season-color) 80%, #000);
  margin-bottom: .4rem;
}

.cal-current__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .2rem;
  line-height: 1.2;
}

.cal-current__sub {
  font-size: .82rem;
  color: var(--c-text-muted);
  margin-bottom: .5rem;
  line-height: 1.4;
}

.cal-current__counts {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.cal-current__count {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .78rem;
  color: var(--c-text-muted);
}

.cal-current__cta {
  display: flex;
  align-items: center;
  gap: .3rem;
  flex-shrink: 0;
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: .5rem;
  background: var(--season-color);
  color: #fff;
  white-space: nowrap;
}

/* ── Barre 3 actions rapides ──────────────────────────────────────────── */
.cal-actions-bar {
  display: flex;
  gap: .5rem;
  padding: .75rem 0 1.25rem;
}

.cal-actions-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .5rem .75rem;
  border-radius: .5rem;
  border: 1.5px solid color-mix(in srgb, var(--ac) 30%, transparent);
  background: color-mix(in srgb, var(--ac) 8%, transparent);
  color: color-mix(in srgb, var(--ac) 80%, #000);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}
.cal-actions-bar__btn:hover {
  background: color-mix(in srgb, var(--ac) 15%, transparent);
}
.cal-actions-bar__btn i { font-size: 1rem; }

/* ── Nav saisons ──────────────────────────────────────────────────────── */
.cal-seasons-nav {
  border-top: .5px solid var(--c-border);
  border-bottom: .5px solid var(--c-border);
  background: var(--c-bg-card);
  position: sticky;
  top: 0;
  z-index: 20;
}

.cal-seasons-nav__track {
  display: flex;
  gap: .35rem;
  padding: .6rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cal-seasons-nav__track::-webkit-scrollbar { display: none; }

.cal-seasons-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: .5rem 1.25rem;
  border-radius: .5rem;
  text-decoration: none;
  color: var(--c-text-main);
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: border-color .15s, background .15s;
  flex-shrink: 0;
}
.cal-seasons-nav__item:hover {
  border-color: var(--season-color);
  background: color-mix(in srgb, var(--season-color) 8%, transparent);
}

.cal-seasons-nav__item i { font-size: 1.1rem; }
.cal-seasons-nav__item span { font-size: .78rem; }
.cal-seasons-nav__item small {
  font-size: .65rem;
  font-weight: 400;
  color: var(--c-text-muted);
}

/* ── Sections saison ──────────────────────────────────────────────────── */
.cal-season-section {
  padding: 2rem 0;
  border-bottom: .5px solid var(--c-border);
}
.cal-season-section:last-of-type { border-bottom: none; }

.cal-season-section__header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: .5px solid var(--c-border);
}
.cal-season-section__title {
  font-size: 1.05rem;
  font-weight: 700;
  flex: 1;
  margin: 0;
}
.cal-season-section__link {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .78rem;
  font-weight: 500;
  text-decoration: none;
  opacity: .85;
  transition: opacity .15s;
}
.cal-season-section__link:hover { opacity: 1; text-decoration: underline; }

/* ── Grille mois (3 colonnes) ─────────────────────────────────────────── */
.cal-months-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}

.cal-mcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: .6rem;
  border: .5px solid var(--c-border);
  background: var(--c-bg-card);
  text-decoration: none;
  color: var(--c-text-main);
  overflow: hidden;
  transition: border-color .15s, transform .1s;
}
.cal-mcard:hover { border-color: var(--c-primary); transform: translateY(-1px); }

.cal-mcard--current {
  border-color: color-mix(in srgb, var(--c-primary, #5a7c3a) 40%, transparent);
  background: color-mix(in srgb, var(--c-primary, #5a7c3a) 4%, var(--c-bg-card));
}

.cal-mcard__bar {
  height: 3px;
  flex-shrink: 0;
}

.cal-mcard__body {
  padding: .7rem .85rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
}

.cal-mcard__now {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .15rem .45rem;
  border-radius: 999px;
  border: 1px solid;
  line-height: 1.4;
}

.cal-mcard__name {
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
}

.cal-mcard__counts {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .1rem;
}

.cal-mcard__c {
  display: inline-flex;
  align-items: center;
  gap: .18rem;
  font-size: .72rem;
  color: var(--c-text-muted);
}
.cal-mcard__c i { font-size: .8rem; }
.cal-mcard__c--none { opacity: .55; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .cal-current {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }
  .cal-current__cta { align-self: stretch; justify-content: center; }
  .cal-actions-bar__btn span { display: none; }
  .cal-months-grid { grid-template-columns: 1fr 1fr; }
  .cal-seasons-nav { position: static; }
}

@media (max-width: 400px) {
  .cal-months-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   calendar.css — tomlejardinier.com
   Couvre : index · month · semis · plantation · recolte · saison
   Dépend de : pages.css (ghero, gfeat, gnews, toc, byline, prose, author-bio…)
   ═══════════════════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════════════════════
   VARIABLES COULEURS ACTIONS & SAISONS
   ══════════════════════════════════════════════════════════════════════════ */
:root {
  --cal-sow:     #7dad65;
  --cal-plant:   #e8a74e;
  --cal-harvest: #c85032;
  --cal-spring:  #7dad65;
  --cal-summer:  #e8a74e;
  --cal-autumn:  #c85032;
  --cal-winter:  #5b8dd9;
}


/* ══════════════════════════════════════════════════════════════════════════
   INDEX — HERO CALENDRIER
   Vue : index.blade.php
   ══════════════════════════════════════════════════════════════════════════ */

.cal-index-hero__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: center;
}

.cal-index-hero__h1 {
  font-family: 'recoletabold', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.cal-index-hero__accent {
  color: #cbd8ac;
  display: block;
}

.cal-index-hero__stats {
  display: flex;
  gap: 2rem;
  padding: 1.25rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cal-index-hero__stat {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.cal-index-hero__stat strong {
  font-family: 'recoletabold', serif;
  font-size: 1.75rem;
  line-height: 1;
  color: #f9d87f;
  font-weight: 400;
}
.cal-index-hero__stat span {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.45);
}

/* Boutons CTA hero & saison (partagés) */
.cal-index-hero__actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.cal-index-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  border-radius: .5rem;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid color-mix(in srgb, var(--hc) 40%, transparent);
  background: color-mix(in srgb, var(--hc) 14%, transparent);
  color: color-mix(in srgb, var(--hc) 90%, #fff);
  transition: background .15s, transform .1s;
}
.cal-index-hero__btn:hover {
  background: color-mix(in srgb, var(--hc) 25%, transparent);
  transform: translateY(-1px);
}
.cal-index-hero__btn i { font-size: 1rem; }

/* Deco calendrier */
.cal-index-hero__deco { display: flex; justify-content: center; }
.cal-index-hero__deco-inner {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cal-index-hero__deco-month { display: flex; flex-direction: column; align-items: center; }
.cal-index-hero__deco-num {
  font-family: 'recoletabold', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255,255,255,.15);
  font-weight: 400;
}
.cal-index-hero__deco-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
}
.cal-index-hero__deco-icons {
  display: flex;
  gap: .75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}


/* ══════════════════════════════════════════════════════════════════════════
   INDEX — GFEAT CARD VARIANTE CALENDRIER
   Vue : index.blade.php (section mois en cours)
   ══════════════════════════════════════════════════════════════════════════ */

.cal-gfeat-card { position: relative; overflow: hidden; }

.cal-gfeat-card__side-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--season-color, #7dad65);
  z-index: 2;
}

.cal-gfeat-card__img-fallback {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-gfeat-card__season-badge {
  position: absolute;
  bottom: .85rem;
  left: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.cal-gfeat-card__counts {
  display: flex;
  gap: 1rem;
  padding: .85rem 1rem;
  margin-bottom: 1.25rem;
  background: rgba(19,51,49,.03);
  border: 1px solid rgba(19,51,49,.06);
  border-radius: .5rem;
  flex-wrap: wrap;
}
body.dark .cal-gfeat-card__counts {
  background: rgba(203,216,172,.03);
  border-color: rgba(203,216,172,.08);
}

.cal-gfeat-card__count {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--cc, #7dad65);
}
.cal-gfeat-card__count i { font-size: 1.1rem; }
.cal-gfeat-card__count strong {
  display: block;
  font-family: 'recoletabold', serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--cc);
}
.cal-gfeat-card__count span {
  font-size: .68rem;
  color: #999;
  display: block;
}
body.dark .cal-gfeat-card__count span { color: rgba(255,255,255,.4); }


/* ══════════════════════════════════════════════════════════════════════════
   INDEX — TILES 4 SAISONS
   Vue : index.blade.php
   ══════════════════════════════════════════════════════════════════════════ */

.cal-season-tiles {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(19,51,49,.06);
}
body.dark .cal-season-tiles { border-bottom-color: rgba(203,216,172,.08); }

.cal-season-tiles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.cal-stile {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  min-height: 200px;
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
}
.cal-stile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border-color: var(--sc);
}

.cal-stile__image { position: absolute; inset: 0; overflow: hidden; }
.cal-stile__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.cal-stile:hover .cal-stile__image img { transform: scale(1.04); }

.cal-stile__image-fallback {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--sc) 15%, #133331);
  font-size: 4rem;
  color: var(--sc);
  opacity: .5;
}

.cal-stile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.05) 100%);
  z-index: 1;
}

.cal-stile__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.cal-stile__icon { font-size: 1.4rem; color: var(--sc); margin-bottom: .35rem; }
.cal-stile__label {
  font-family: 'recoletabold', serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.cal-stile__months {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
}
.cal-stile__tagline { font-size: .78rem; color: rgba(255,255,255,.75); line-height: 1.35; }
.cal-stile__count { font-size: .65rem; font-weight: 700; color: var(--sc); margin-top: .15rem; }


/* ══════════════════════════════════════════════════════════════════════════
   NAV SAISONS STICKY
   Vues : index.blade.php, saison.blade.php
   ══════════════════════════════════════════════════════════════════════════ */

.cal-seasons-nav {
  border-top: .5px solid rgba(19,51,49,.08);
  border-bottom: .5px solid rgba(19,51,49,.08);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
body.dark .cal-seasons-nav { background: #061514; border-color: rgba(203,216,172,.1); }

.cal-seasons-nav__track {
  display: flex;
  gap: .35rem;
  padding: .6rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cal-seasons-nav__track::-webkit-scrollbar { display: none; }

.cal-seasons-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .12rem;
  padding: .45rem 1.25rem;
  border-radius: .45rem;
  text-decoration: none;
  color: var(--c-text-main, #133331);
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: border-color .15s, background .15s;
  flex-shrink: 0;
}
.cal-seasons-nav__item i { font-size: 1rem; }
.cal-seasons-nav__item span { font-size: .72rem; }
.cal-seasons-nav__item small {
  font-size: .62rem;
  font-weight: 400;
  color: #999;
}
.cal-seasons-nav__item:hover {
  border-color: var(--season-color);
  background: color-mix(in srgb, var(--season-color) 8%, transparent);
}


/* ══════════════════════════════════════════════════════════════════════════
   SECTIONS SAISON (dans index et saison)
   Vues : index.blade.php, saison.blade.php
   ══════════════════════════════════════════════════════════════════════════ */

.cal-season-section {
  padding: 2rem 0;
  border-bottom: .5px solid rgba(19,51,49,.06);
}
.cal-season-section:last-of-type { border-bottom: none; }
body.dark .cal-season-section { border-bottom-color: rgba(203,216,172,.06); }

.cal-season-section__header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: .5px solid rgba(19,51,49,.06);
}
body.dark .cal-season-section__header { border-bottom-color: rgba(203,216,172,.06); }

.cal-season-section__title {
  font-family: 'recoletabold', serif;
  font-size: 1.05rem;
  font-weight: 400;
  flex: 1;
  margin: 0;
}

.cal-season-section__link {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .78rem;
  font-weight: 500;
  text-decoration: none;
  opacity: .85;
  transition: opacity .15s;
}
.cal-season-section__link:hover { opacity: 1; text-decoration: underline; }


/* ══════════════════════════════════════════════════════════════════════════
   GRILLE DES MOIS (avec images)
   Vues : index.blade.php, saison.blade.php
   ══════════════════════════════════════════════════════════════════════════ */

.cal-months-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}

.cal-mcard {
  border-radius: .65rem;
  border: .5px solid rgba(19,51,49,.06);
  background: #fff;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, transform .1s;
}
body.dark .cal-mcard { background: #1a2e2c; border-color: rgba(203,216,172,.06); }
.cal-mcard:hover { border-color: #7dad65; transform: translateY(-1px); }

.cal-mcard--current {
  border-color: rgba(125,173,101,.4);
  background: rgba(125,173,101,.04);
}
body.dark .cal-mcard--current { background: rgba(125,173,101,.05); }

/* Image */
.cal-mcard__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  flex-shrink: 0;
}
.cal-mcard__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.cal-mcard:hover .cal-mcard__image img { transform: scale(1.04); }

.cal-mcard__image-fallback {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Barre couleur saison en haut */
.cal-mcard__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 2;
}

/* Badge "maintenant" */
.cal-mcard__now {
  position: absolute;
  top: .5rem; right: .5rem;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .5rem;
  border-radius: 999px;
  background: #7dad65;
  color: #fff;
  z-index: 3;
}

/* Corps */
.cal-mcard__body {
  padding: .75rem .9rem .85rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex: 1;
}

.cal-mcard__name {
  font-family: 'recoletabold', serif;
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  color: #133331;
}
body.dark .cal-mcard__name { color: #fff; }

.cal-mcard__excerpt {
  font-size: .72rem;
  color: #999;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.dark .cal-mcard__excerpt { color: rgba(255,255,255,.4); }

.cal-mcard__counts {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .15rem;
}

.cal-mcard__c {
  display: inline-flex;
  align-items: center;
  gap: .18rem;
  font-size: .72rem;
  color: #999;
}
body.dark .cal-mcard__c { color: rgba(255,255,255,.5); }
.cal-mcard__c i { font-size: .8rem; }
.cal-mcard__c--none { opacity: .5; }


/* ══════════════════════════════════════════════════════════════════════════
   CHIPS DE PLANTES
   Vues : month.blade.php, saison.blade.php, semis/plantation/recolte.blade.php
   ══════════════════════════════════════════════════════════════════════════ */

.cal-plants-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .75rem;
}

.cal-plant-chip {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: filter .15s, transform .1s;
  line-height: 1.3;
}
.cal-plant-chip:hover { filter: brightness(.88); transform: translateY(-1px); }

.cal-plant-chip--sow {
  background: color-mix(in srgb, var(--cal-sow) 12%, transparent);
  border-color: var(--cal-sow);
  color: color-mix(in srgb, var(--cal-sow) 70%, #1a1a1a);
}
.cal-plant-chip--plant {
  background: color-mix(in srgb, var(--cal-plant) 12%, transparent);
  border-color: var(--cal-plant);
  color: color-mix(in srgb, var(--cal-plant) 70%, #1a1a1a);
}
.cal-plant-chip--harvest {
  background: color-mix(in srgb, var(--cal-harvest) 12%, transparent);
  border-color: var(--cal-harvest);
  color: color-mix(in srgb, var(--cal-harvest) 70%, #1a1a1a);
}

/* Section plantes dans month.blade.php */
.cal-plants-section { margin-top: 2.5rem; }
.cal-plants-section__title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'recoletabold', serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: .6rem;
  color: #133331;
}
body.dark .cal-plants-section__title { color: #fff; }


/* ══════════════════════════════════════════════════════════════════════════
   PAGES ACTION : SEMIS / PLANTATION / RECOLTE
   Vues : semis.blade.php, plantation.blade.php, recolte.blade.php
   ══════════════════════════════════════════════════════════════════════════ */

.cal-action-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.cal-action-month {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: .5px solid rgba(19,51,49,.06);
}
.cal-action-month:last-child { border-bottom: none; }
body.dark .cal-action-month { border-bottom-color: rgba(203,216,172,.06); }

.cal-action-month__header {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: .6rem;
}

.cal-action-month__title {
  font-family: 'recoletabold', serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0;
  color: #133331;
}
body.dark .cal-action-month__title { color: #fff; }

.cal-action-month__title-link { text-decoration: none; color: inherit; }
.cal-action-month__title-link:hover .cal-action-month__title { color: #7dad65; }

.cal-action-month__count {
  font-size: .78rem;
  color: #999;
  white-space: nowrap;
}

.cal-action-page__empty {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #999;
  font-size: .95rem;
  padding: 2rem 0;
}


/* ══════════════════════════════════════════════════════════════════════════
   NAV MOIS PRÉCÉDENT / SUIVANT — variante avec accent couleur saison
   Vue : month.blade.php
   ══════════════════════════════════════════════════════════════════════════ */

.cal-month-nav {
  padding: 1.5rem 0;
  border-top: .5px solid rgba(19,51,49,.06);
}
body.dark .cal-month-nav { border-top-color: rgba(203,216,172,.06); }

.cal-month-nav__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  max-width: 900px;
  margin: 0 auto;
}

.cal-month-nav__btn {
  display: flex;
  flex-direction: column;
  border-radius: .65rem;
  border: .5px solid rgba(19,51,49,.08);
  background: #fff;
  text-decoration: none;
  color: #133331;
  overflow: hidden;
  transition: border-color .15s, transform .1s, box-shadow .15s;
}
body.dark .cal-month-nav__btn { background: #1a2e2c; border-color: rgba(203,216,172,.08); color: #fff; }
.cal-month-nav__btn:hover {
  border-color: #7dad65;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

/* Barre de couleur saison */
.cal-month-nav__accent {
  height: 3px;
  flex-shrink: 0;
}

.cal-month-nav__body {
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cal-month-nav__btn--next .cal-month-nav__body {
  align-items: flex-end;
  text-align: right;
}

/* Label "Mois précédent / suivant" */
.cal-month-nav__dir {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #999;
}
.cal-month-nav__btn--next .cal-month-nav__dir { flex-direction: row-reverse; }

/* Titre du mois */
.cal-month-nav__name {
  font-family: 'recoletabold', serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.3;
  color: #133331;
}
body.dark .cal-month-nav__name { color: #fff; }

/* Saison du mois */
.cal-month-nav__season {
  font-size: .72rem;
  display: flex;
  align-items: center;
  gap: .2rem;
}
.cal-month-nav__btn--next .cal-month-nav__season { flex-direction: row-reverse; }


/* ══════════════════════════════════════════════════════════════════════════
   FAQ ACCORDÉON CALENDRIER
   Vue : index.blade.php
   ══════════════════════════════════════════════════════════════════════════ */

.cal-faq {
  padding: 3rem 0;
  border-top: 1px solid rgba(19,51,49,.06);
}
body.dark .cal-faq { border-top-color: rgba(203,216,172,.08); }

.cal-faq__inner { max-width: 760px; }

.cal-faq__title {
  font-family: 'recoletabold', serif;
  font-size: calc(1.2rem + .5vw);
  color: #133331;
  margin-bottom: .5rem;
  font-weight: 400;
}
body.dark .cal-faq__title { color: #fff; }

.cal-faq__intro {
  font-size: .9rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.cal-faq__list { display: flex; flex-direction: column; }

.cal-faq__item {
  border-bottom: 1px solid rgba(19,51,49,.08);
}
body.dark .cal-faq__item { border-bottom-color: rgba(203,216,172,.08); }
.cal-faq__item:first-of-type { border-top: 1px solid rgba(19,51,49,.08); }
body.dark .cal-faq__item:first-of-type { border-top-color: rgba(203,216,172,.08); }

.cal-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: 'recoletabold', serif;
  font-size: .95rem;
  font-weight: 400;
  color: #133331;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .2s;
}
body.dark .cal-faq__q { color: #fff; }
.cal-faq__q::-webkit-details-marker { display: none; }
.cal-faq__q:hover { color: #7dad65; }
body.dark .cal-faq__q:hover { color: #cbd8ac; }

.cal-faq__chevron {
  font-size: .9rem;
  flex-shrink: 0;
  color: #999;
  transition: transform .2s, color .2s;
}
.cal-faq__item[open] .cal-faq__chevron { transform: rotate(45deg); color: #7dad65; }

.cal-faq__a {
  padding: 0 0 1.1rem;
  font-size: .88rem;
  color: #525252;
  line-height: 1.7;
  max-width: 660px;
}
body.dark .cal-faq__a { color: rgba(255,255,255,.6); }
.cal-faq__a p { margin: 0; }
.cal-faq__a a { color: #7dad65; text-decoration: underline; text-underline-offset: 2px; }
.cal-faq__a a:hover { color: #5a8a3c; }
body.dark .cal-faq__a a { color: #cbd8ac; }
.cal-faq__a strong { color: #133331; font-weight: 600; }
body.dark .cal-faq__a strong { color: #fff; }


/* ══════════════════════════════════════════════════════════════════════════
   BIO AUTEUR E-E-A-T
   Vue : index.blade.php
   ══════════════════════════════════════════════════════════════════════════ */

.cal-eeat {
  padding: 2.5rem 0 3rem;
  background: #f8f8f6;
  border-top: 1px solid rgba(19,51,49,.06);
}
body.dark .cal-eeat {
  background: #0f2523;
  border-top-color: rgba(203,216,172,.06);
}

.cal-eeat__card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: #fff;
  border-radius: .75rem;
  border: 1px solid rgba(19,51,49,.06);
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
  max-width: 760px;
}
body.dark .cal-eeat__card {
  background: rgba(19,51,49,.4);
  border-color: rgba(203,216,172,.1);
}

.cal-eeat__img {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(203,216,172,.3);
  flex-shrink: 0;
}

.cal-eeat__name {
  font-family: 'recoletabold', serif;
  font-size: 1.05rem;
  font-weight: 400;
  display: block;
  color: #133331;
  margin-bottom: .4rem;
}
body.dark .cal-eeat__name { color: #cbd8ac; }

.cal-eeat__text {
  font-size: .88rem;
  line-height: 1.7;
  color: #525252;
  margin-bottom: .75rem;
}
body.dark .cal-eeat__text { color: rgba(255,255,255,.65); }
.cal-eeat__text strong { color: #133331; }
body.dark .cal-eeat__text strong { color: #fff; }

.cal-eeat__links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.cal-eeat__links a {
  font-size: .82rem;
  font-weight: 600;
  color: #133331;
  text-decoration: none;
  transition: color .2s;
}
.cal-eeat__links a:hover { color: #7dad65; }
body.dark .cal-eeat__links a { color: #cbd8ac; }
body.dark .cal-eeat__links a:hover { color: #f9d87f; }


/* ══════════════════════════════════════════════════════════════════════════
   NEWSLETTER CHECKLIST (dans gnews)
   Vue : index.blade.php
   ══════════════════════════════════════════════════════════════════════════ */

.cal-news-checklist {
  list-style: none;
  padding: 0;
  margin: .5rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.cal-news-checklist li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.cal-news-checklist i { color: #7dad65; font-size: 1rem; flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════════════════
   CONTENT BLOCKS — inline RTE (body des mois et saisons)
   ══════════════════════════════════════════════════════════════════════════ */

[class^="cb-"]:not([class*="__"]) { margin: 1.5rem 0; border-radius: .5rem; }

/* cb-alert */
.cb-alert {
  display: flex;
  gap: .75rem;
  padding: 1rem 1.1rem;
  background: color-mix(in srgb, var(--c-danger, #e53e3e) 8%, transparent);
  border-left: 4px solid var(--c-danger, #e53e3e);
  border-radius: 0 .5rem .5rem 0;
}
.cb-alert > .ph { font-size: 1.3rem; color: var(--c-danger, #e53e3e); flex-shrink: 0; margin-top: .15rem; }
.cb-alert__title { display: block; font-weight: 700; margin-bottom: .2rem; }
.cb-alert__text  { margin: 0; font-size: .9rem; }

/* cb-tip-tom */
.cb-tip-tom {
  background: color-mix(in srgb, #7dad65 6%, var(--c-bg-card, #fff));
  border: 1.5px solid color-mix(in srgb, #7dad65 25%, transparent);
  border-radius: .6rem;
  padding: 1.1rem 1.25rem;
}
.cb-tip-tom__avatar {
  display: flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: #5a8a3c; margin-bottom: .6rem;
}
body.dark .cb-tip-tom__avatar { color: #cbd8ac; }
.cb-tip-tom__avatar .ph { font-size: 1.3rem; }
.cb-tip-tom__quote { margin: 0; padding: 0; border: none; font-style: italic; font-size: .95rem; line-height: 1.65; color: #525252; }
body.dark .cb-tip-tom__quote { color: rgba(255,255,255,.8); }

/* cb-geo (altitude / south / balcony) */
.cb-geo {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .85rem 1rem; border-radius: .5rem; font-size: .9rem;
  border: 1px solid rgba(19,51,49,.06); background: #fff;
}
body.dark .cb-geo { background: #1a2e2c; border-color: rgba(203,216,172,.08); }
.cb-geo > .ph { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.cb-geo strong { display: block; font-weight: 700; margin-bottom: .2rem; }
.cb-geo p { margin: 0; }
.cb-geo--altitude { border-left: 4px solid var(--cal-winter); }
.cb-geo--south    { border-left: 4px solid var(--cal-plant);  }
.cb-geo--balcony  { border-left: 4px solid var(--cal-sow);    }

/* cb-dont-do */
.cb-dont-do {
  padding: 1rem 1.1rem;
  background: color-mix(in srgb, #e53e3e 5%, transparent);
  border: 1.5px solid color-mix(in srgb, #e53e3e 22%, transparent);
  border-radius: .5rem;
}
.cb-dont-do__title {
  display: flex; align-items: center; gap: .4rem;
  font-size: .9rem; font-weight: 700; color: #c0392b; margin-bottom: .65rem;
}
.cb-dont-do__list { margin: 0; padding-left: 1.2rem; }
.cb-dont-do__list li { font-size: .9rem; margin-bottom: .25rem; }
.cb-dont-do__list li::marker { color: #c0392b; }

/* cb-info */
.cb-info {
  display: flex; gap: .75rem; padding: 1rem 1.1rem;
  background: color-mix(in srgb, #7dad65 7%, transparent);
  border-left: 4px solid #7dad65; border-radius: 0 .5rem .5rem 0;
}
.cb-info > .ph { font-size: 1.3rem; color: #7dad65; flex-shrink: 0; margin-top: .15rem; }
.cb-info__title { display: block; font-weight: 700; margin-bottom: .2rem; }
.cb-info__text  { margin: 0; font-size: .9rem; }

/* cb-warning */
.cb-warning {
  display: flex; gap: .75rem; padding: 1rem 1.1rem;
  background: color-mix(in srgb, #c85032 8%, transparent);
  border-left: 4px solid #c85032; border-radius: 0 .5rem .5rem 0;
}
.cb-warning > .ph { font-size: 1.3rem; color: #c85032; flex-shrink: 0; margin-top: .15rem; }
.cb-warning__title { display: block; font-weight: 700; margin-bottom: .2rem; color: #c85032; }
.cb-warning__text  { margin: 0; font-size: .9rem; }

/* cb-plant-list */
.cb-plant-list {
  padding: 1rem 1.1rem; background: #fff;
  border: 1px solid rgba(19,51,49,.06); border-radius: .5rem;
}
body.dark .cb-plant-list { background: #1a2e2c; border-color: rgba(203,216,172,.08); }
.cb-plant-list__title { display: block; font-weight: 700; margin-bottom: .6rem; }
.cb-plant-list__items { margin: 0; padding-left: 1.2rem; columns: 2; gap: 1rem; }
.cb-plant-list__items li { font-size: .9rem; margin-bottom: .3rem; break-inside: avoid; }
.cb-plant-list__items a  { color: #7dad65; text-decoration: none; }
.cb-plant-list__items a:hover { text-decoration: underline; }
@media (max-width: 540px) { .cb-plant-list__items { columns: 1; } }

/* cb-comparison-table */
.cb-comparison-table { border: 1px solid rgba(19,51,49,.08); border-radius: .5rem; overflow: hidden; }
body.dark .cb-comparison-table { border-color: rgba(203,216,172,.1); }
.cb-comparison-table__caption {
  padding: .6rem 1rem; font-size: .78rem; color: #999;
  border-bottom: 1px solid rgba(19,51,49,.06); margin: 0;
  background: #f8f8f6;
}
body.dark .cb-comparison-table__caption { background: #1a2e2c; border-color: rgba(203,216,172,.06); }
.cb-comparison-table__scroll { overflow-x: auto; }
.cb-comparison-table table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.cb-comparison-table th,
.cb-comparison-table td { padding: .55rem .9rem; border-bottom: 1px solid rgba(19,51,49,.06); text-align: left; vertical-align: top; }
body.dark .cb-comparison-table th,
body.dark .cb-comparison-table td { border-bottom-color: rgba(203,216,172,.06); }
.cb-comparison-table th {
  background: #133331; color: #fff;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
}
.cb-comparison-table tr:last-child td { border-bottom: none; }
.cb-comparison-table tbody tr:hover td { background: rgba(125,173,101,.04); }


/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1023px) {
  .cal-season-tiles__grid { grid-template-columns: repeat(2, 1fr); }
  .cal-months-grid { grid-template-columns: repeat(2, 1fr); }
  .cal-index-hero__inner { grid-template-columns: 1fr; }
  .cal-index-hero__deco { display: none; }
}

@media (max-width: 767px) {
  .cal-eeat__card { flex-direction: column; }
  .cal-index-hero__stats { gap: 1.25rem; }
}

@media (max-width: 640px) {
  .cal-season-tiles__grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .cal-seasons-nav { position: static; }
  .cal-months-grid { grid-template-columns: 1fr 1fr; }
  .cal-gfeat-card__counts { flex-direction: column; gap: .5rem; }
  .cal-month-nav__inner { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .cal-months-grid { grid-template-columns: 1fr; }
  .cal-season-tiles__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   cal-action-additions.css
   Pages semis / plantation / recolte + tableau annuel
   À ajouter à la fin de calendar.css
   ═══════════════════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════════════════════
   HERO ACTION — variante des 3 pages action
   ══════════════════════════════════════════════════════════════════════════ */

.cal-action-hero__inner {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0 1rem;
}

.cal-action-hero__h1 {
  font-family: 'recoletabold', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.cal-action-hero__accent {
  display: block;
}

.cal-action-hero__stats {
  display: flex;
  gap: 1.75rem;
  padding: 1rem 0;
  margin-bottom: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cal-action-hero__stat {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.cal-action-hero__stat strong {
  font-family: 'recoletabold', serif;
  font-size: 1.5rem;
  line-height: 1;
  color: #f9d87f;
  font-weight: 400;
}
.cal-action-hero__stat span {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.45);
}

/* Visual deco */
.cal-action-hero__visual { display: flex; justify-content: center; }
.cal-action-hero__visual-inner {
  background: rgba(255,255,255,.05);
  border: 1.5px solid color-mix(in srgb, var(--ac) 30%, rgba(255,255,255,.1));
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.cal-action-hero__visual-icon {
  font-size: 3rem;
  color: var(--ac);
  opacity: .85;
}
.cal-action-hero__visual-label {
  font-family: 'recoletabold', serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,.9);
}
.cal-action-hero__visual-sub {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ac);
}


/* ══════════════════════════════════════════════════════════════════════════
   SECTIONS DES PAGES ACTION
   ══════════════════════════════════════════════════════════════════════════ */

.cal-action-section {
  padding: 2.5rem 0;
  border-bottom: .5px solid rgba(19,51,49,.06);
}
body.dark .cal-action-section { border-bottom-color: rgba(203,216,172,.06); }
.cal-action-section:last-of-type { border-bottom: none; }

.cal-action-section--geo { background: #f8f8f6; }
body.dark .cal-action-section--geo { background: #0f2523; }

.cal-action-section--howto { background: rgba(19,51,49,.015); }
body.dark .cal-action-section--howto { background: rgba(203,216,172,.02); }

.cal-action-section__header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.cal-action-section__title {
  font-family: 'recoletabold', serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0;
  color: #133331;
}
body.dark .cal-action-section__title { color: #fff; }


/* ══════════════════════════════════════════════════════════════════════════
   TABLEAU ANNUEL SYNTHÈSE
   ══════════════════════════════════════════════════════════════════════════ */

.cal-annual-table-wrap {
  border: 1px solid rgba(19,51,49,.08);
  border-radius: .75rem;
  overflow: hidden;
}
body.dark .cal-annual-table-wrap { border-color: rgba(203,216,172,.1); }

.cal-annual-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.cal-annual-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: .85rem;
}

/* Thead */
.cal-annual-table thead {
  background: #133331;
  position: sticky;
  top: 0;
  z-index: 2;
}
body.dark .cal-annual-table thead { background: #0f2523; }

.cal-annual-table__th-month,
.cal-annual-table__th-plants,
.cal-annual-table__th-indicator {
  padding: .7rem 1rem;
  text-align: left;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.cal-annual-table__th-month    { width: 130px; }
.cal-annual-table__th-indicator { width: 80px; text-align: right; }

/* Rows */
.cal-annual-table__row {
  border-bottom: 1px solid rgba(19,51,49,.05);
  transition: background .15s;
}
body.dark .cal-annual-table__row { border-bottom-color: rgba(203,216,172,.04); }
.cal-annual-table__row:last-child { border-bottom: none; }
.cal-annual-table__row:hover { background: rgba(203,216,172,.04); }
.cal-annual-table__row--empty { opacity: .55; }

/* Cells */
.cal-annual-table__td-month,
.cal-annual-table__td-plants,
.cal-annual-table__td-bar {
  padding: .6rem 1rem;
  vertical-align: middle;
}
.cal-annual-table__td-bar { text-align: right; }

/* Month link */
.cal-annual-table__month-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: .82rem;
  color: #133331;
  transition: color .15s;
}
body.dark .cal-annual-table__month-link { color: #fff; }
.cal-annual-table__month-link:hover { color: var(--sc, #7dad65); }

.cal-annual-table__season-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Chips dans le tableau */
.cal-annual-table__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}

.cal-annual-table__chip {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
  background: color-mix(in srgb, var(--cc) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 30%, transparent);
  color: color-mix(in srgb, var(--cc) 75%, #1a1a1a);
  transition: filter .15s, transform .1s;
}
.cal-annual-table__chip:hover { filter: brightness(.88); transform: translateY(-1px); }

.cal-annual-table__chip--more {
  background: transparent;
  border-style: dashed;
  font-style: italic;
  opacity: .7;
}

.cal-annual-table__empty {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  color: #bbb;
  font-style: italic;
}
body.dark .cal-annual-table__empty { color: rgba(255,255,255,.3); }

/* Bar indicator */
.cal-annual-table__bar {
  display: inline-block;
  height: 6px;
  border-radius: 3px;
  min-width: 4px;
  opacity: .7;
  vertical-align: middle;
}

/* Note bas de tableau */
.cal-annual-table__note {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1rem;
  font-size: .75rem;
  color: #999;
  background: rgba(19,51,49,.015);
  border-top: 1px solid rgba(19,51,49,.05);
  margin: 0;
}
body.dark .cal-annual-table__note {
  background: rgba(203,216,172,.02);
  border-top-color: rgba(203,216,172,.05);
  color: rgba(255,255,255,.4);
}


/* ══════════════════════════════════════════════════════════════════════════
   NAV RAPIDE PAR MOIS
   ══════════════════════════════════════════════════════════════════════════ */

.cal-action-monthnav {
  background: #fff;
  border-top: .5px solid rgba(19,51,49,.06);
  border-bottom: .5px solid rgba(19,51,49,.06);
  position: sticky;
  top: 0;
  z-index: 20;
  padding: .5rem 0;
}
body.dark .cal-action-monthnav {
  background: #061514;
  border-color: rgba(203,216,172,.1);
}

.cal-action-monthnav__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  font-size: .62rem;
  font-weight: 800;
  background: rgba(19,51,49,.08);
  color: #666;
  padding: 0 4px;
}
body.dark .cal-action-monthnav__count { background: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }


/* ══════════════════════════════════════════════════════════════════════════
   MOIS DÉTAILLÉS
   ══════════════════════════════════════════════════════════════════════════ */

.cal-action-months {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cal-action-month {
  padding: 1.75rem 0;
  border-bottom: .5px solid rgba(19,51,49,.06);
}
body.dark .cal-action-month { border-bottom-color: rgba(203,216,172,.06); }
.cal-action-month:last-child { border-bottom: none; }

.cal-action-month__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}

.cal-action-month__header-left {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.cal-action-month__season-bar {
  width: 4px;
  height: 40px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cal-action-month__title-link { text-decoration: none; }
.cal-action-month__title {
  font-family: 'recoletabold', serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin: 0 0 .2rem;
  color: #133331;
  transition: color .15s;
}
body.dark .cal-action-month__title { color: #fff; }
.cal-action-month__title-link:hover .cal-action-month__title { color: #7dad65; }

.cal-action-month__meta {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .72rem;
  color: #999;
}

.cal-action-month__count {
  font-family: 'recoletabold', serif;
  font-size: .82rem;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: .15rem;
}

.cal-action-month__more-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .85rem;
  font-size: .78rem;
  font-weight: 600;
  color: #999;
  text-decoration: none;
  transition: color .15s;
}
.cal-action-month__more-link:hover { color: #133331; }
body.dark .cal-action-month__more-link { color: rgba(255,255,255,.4); }
body.dark .cal-action-month__more-link:hover { color: #cbd8ac; }


/* ══════════════════════════════════════════════════════════════════════════
   GEO GRID (3 blocs côte à côte)
   ══════════════════════════════════════════════════════════════════════════ */

.cal-action-geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}


/* ══════════════════════════════════════════════════════════════════════════
   HOWTO STEPS
   ══════════════════════════════════════════════════════════════════════════ */

.cal-howto-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 760px;
}

.cal-howto-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cal-howto-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'recoletabold', serif;
  font-size: .9rem;
  font-weight: 400;
  margin-top: 2px;
}

.cal-howto-step__body { flex: 1; min-width: 0; }

.cal-howto-step__title {
  font-family: 'recoletabold', serif;
  font-size: .95rem;
  font-weight: 400;
  color: #133331;
  margin: 0 0 .35rem;
}
body.dark .cal-howto-step__title { color: #fff; }

.cal-howto-step__body p {
  font-size: .88rem;
  line-height: 1.7;
  color: #525252;
  margin: 0;
}
body.dark .cal-howto-step__body p { color: rgba(255,255,255,.65); }


/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1023px) {
  .cal-action-hero__inner { grid-template-columns: 1fr; }
  .cal-action-hero__visual { display: none; }
  .cal-action-geo-grid { grid-template-columns: 1fr; gap: .6rem; }
}

@media (max-width: 767px) {
  .cal-action-hero__stats { gap: 1.25rem; }
  .cal-action-monthnav { position: static; }
  .cal-annual-table__th-indicator,
  .cal-annual-table__td-bar { display: none; }
}

@media (max-width: 600px) {
  .cal-action-month__header { flex-direction: column; gap: .4rem; }
  .cal-action-month__count { align-self: flex-start; }
}