/*
Theme Name: Sara Markowicz
Theme URI: https://google.com
Author: Mo
Author URI: https://google.com
Description: Custom classic theme for Sara Markowicz - Naturopathy & Wellness
Version: 1.0
License: GPL v2 or later
Text Domain: sara-markowicz-theme
*/

:root {
  --color-bg-light: #faf9f7;
  --color-bg-second: #f2d6ce;
  --color-bg-light-dark: #f2e4e0;
  --color-text: #292421;
  --color-brand: #A75F37;
  --color-nature: #7A958F;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* ========================================
   1. GLOBAL RESETS & TYPOGRAPHY
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-bg-light);
  overflow-x: clip;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ========================================
   2. HEADER & NAVIGATION (STICKY)
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--color-bg-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  will-change: background-color;
}

.site-header.is-scrolled {
  background-color: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  gap: 1.5rem;
  flex-wrap: nowrap;
  min-height: 96px;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  transition: font-size 0.3s ease;
  flex-shrink: 0;
}

.site-header.is-scrolled .site-title {
  font-size: 1.8rem;
}

.main-navigation {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-menu li {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--color-brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-cta {
  display: block;
}

.header-cta-button {
  display: inline-block;
  background-color: var(--color-brand);
  color: #ffffff !important;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(167, 95, 55, 0.2);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.site-header.is-scrolled .header-cta-button {
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
}

.header-cta-button:hover {
  background-color: #8c4e2c;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(167, 95, 55, 0.3);
}

/* ========================================
   3. SEARCH TOGGLE (HEADER)
   ======================================== */
.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text);
  transition: color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.search-toggle:hover {
  color: var(--color-brand);
  transform: scale(1.1);
}

.search-toggle:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
  border-radius: 4px;
}

.search-toggle svg {
  display: block;
}

/* ========================================
   4. MOBILE MENU (HAMBURGER)
   ======================================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  flex-shrink: 0;
}

.menu-toggle-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text);
  margin: 5px 0;
  transition: background-color 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--color-bg-light);
  z-index: 1002;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.mobile-menu-panel.is-open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(41, 36, 33, 0.1);
}

.mobile-menu-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
  padding: 0;
  transition: color 0.2s ease;
}

.mobile-menu-close:hover {
  color: var(--color-brand);
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-menu a {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-text);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.mobile-nav-menu a:hover {
  color: var(--color-brand);
}

.mobile-menu-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(41, 36, 33, 0.1);
}

.mobile-cta-button {
  display: block;
  background-color: var(--color-brand);
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.25s ease;
}

.mobile-cta-button:hover {
  background-color: #8c4e2c;
  color: #ffffff;
}

/* ========================================
   5. SEARCH OVERLAY
   ======================================== */
.header-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 249, 247, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1003;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
}

.header-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.header-search-inner {
  width: 100%;
  max-width: 700px;
  padding: 0 2rem;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.header-search-overlay.is-open .header-search-inner {
  transform: translateY(0);
}

.header-search-close {
  position: absolute;
  top: -60px;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.25rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.header-search-close:hover {
  color: var(--color-brand);
  transform: rotate(90deg);
}

.header-search-container {
  width: 100%;
}

.header-search-container .search-form {
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(41, 36, 33, 0.12);
  border-radius: 8px;
}

.header-search-container .search-form-input {
  padding: 1.2rem 1.5rem;
  font-size: 1.25rem;
}

.header-search-container .search-form-submit {
  padding: 0 1.75rem;
}

/* ========================================
   6. SEARCH FORM (GÉNÉRIQUE)
   ======================================== */
.search-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid rgba(41, 36, 33, 0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.search-form:focus-within {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(167, 95, 55, 0.1);
}

.search-form-input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  outline: none;
}

.search-form-input::placeholder {
  color: var(--color-nature);
  opacity: 0.7;
}

.search-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  background: var(--color-brand);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.search-form-submit:hover {
  background-color: #8c4e2c;
}

.search-form-submit:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: -3px;
}

.search-form-submit svg {
  display: block;
}

/* ========================================
   7. HERO SECTION
   ======================================== */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 80vh;
  background-color: var(--color-bg-second);
  overflow: hidden;
  padding: 0 4rem;
  position: relative;
}

.hero-content {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 2rem;
  margin: 3rem 2rem;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.hero-title {
  margin-top: 0;
  margin-bottom: 2rem;
  color: var(--color-brand);
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-description {
  margin-top: -1rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: justify;
}

.hero-button {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  color: var(--color-brand);
  background-color: transparent;
  border: 2px solid var(--color-brand);
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  text-transform: capitalize;
  transition: all 0.25s ease;
}

.hero-button:hover {
  background-color: var(--color-brand);
  color: #ffffff;
}

.hero-button::after {
  content: '→';
  font-family: var(--font-body);
  font-weight: bold;
}

.hero-image {
  position: absolute;
  top: 1rem;
  right: -10rem;
  bottom: 0rem;
}

.hero-image-img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* ========================================
   8. EBOOK PROMO SECTION
   ======================================== */
.ebook-promo {
  padding: 2rem 1rem;
  background-color: var(--color-bg-light);
}

.ebook-promo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.ebook-promo-content {
  flex: 1 1 50%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ebook-promo-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  width: 50%;
  text-align: center;
}

.ebook-promo-image-mobile {
  display: none;
}

.ebook-promo-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 2rem;
  padding: 0 3rem;
  text-align: justify;
}

.ebook-promo-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(41, 36, 33, 0.1);
  border-bottom: 1px solid rgba(41, 36, 33, 0.1);
}

.ebook-promo-name {
  font-weight: 600;
  color: var(--color-text);
}

.ebook-promo-author {
  color: var(--color-nature);
}

.ebook-promo-price {
  background: var(--color-brand);
  color: var(--color-bg-light);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

.ebook-promo-button {
  display: inline-block;
  background: var(--color-text);
  color: var(--color-bg-light);
  padding: 0.8rem 2.5rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ebook-promo-button:hover {
  background: var(--color-bg-light);
  color: var(--color-text);
  text-decoration: none;
  transform: scale(1.02);
  border: 1px solid var(--color-text);
}

.ebook-promo-image-wrapper {
  flex: 1 1 5%;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.ebook-promo-image {
  max-width: 85%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: rotate(3deg);
}

/* ========================================
   9. PODCAST SECTION
   ======================================== */
.podcast-section {
  padding: 2rem 2rem;
  background: var(--color-bg-light);
}

.podcast-container {
  max-width: 900px;
  margin: 0 auto;
}

.podcast-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 3rem;
}

.podcast-player {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ========================================
   10. SOCIAL LINKS SECTION
   ======================================== */
.social-section {
  padding: 2rem;
}

.social-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-bg-light-dark);
  padding: 3rem 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.social-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: -0.75rem;
  text-align: center;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
}

.social-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.social-link:hover .social-logo {
  opacity: 0.8;
}

.social-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.social-link:hover .social-name {
  color: var(--color-brand);
}

/* ========================================
   11. ABOUT / HYGIÈNE DE VIE SECTION
   ======================================== */
.about-section {
  padding: 2rem 4rem;
}

.about-container {
  background: var(--color-bg-light-dark);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  border-radius: 12px;
}

.about-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.about-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 1rem;
  margin-top: -0.25rem;
}

.about-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 2rem;
  text-align: justify;
}

.about-button {
  display: inline-block;
  background: transparent;
  color: var(--color-text);
  padding: 0.8rem 1rem;
  border-bottom: 3px solid var(--color-brand);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.5px;
  border: 1px solid var(--color-brand);
  border-radius: 3px;
}

.about-button:hover {
  color: var(--color-bg-light);
  border-bottom-color: var(--color-brand);
  text-decoration: none;
  background-color: var(--color-brand);
}

.about-button::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.about-button:hover::after {
  transform: translateX(4px);
}

.about-media {
  flex: 1 1 45%;
  min-width: 300px;
}

.about-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: var(--color-bg-light);
  border-radius: 12px;
  border: 2px dashed rgba(41, 36, 33, 0.15);
  min-height: 300px;
  color: var(--color-nature);
  font-family: var(--font-body);
}

.about-placeholder .dashicons {
  font-size: 3rem;
  width: 3rem;
  height: 3rem;
  color: var(--color-nature);
  margin-bottom: 1rem;
}

/* ========================================
   12. CONSULTATION SECTION
   ======================================== */
.consultation-section {
  padding: 4rem 2rem;
  background: var(--color-bg-light);
}

.consultation-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.consultation-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 3rem;
}

.consultation-content-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.consultation-image-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
}

.consultation-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.consultation-text-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consultation-description {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text);
  text-align: justify;
  margin-bottom: 2rem;
}

.consultation-button {
  display: inline-block;
  background: var(--color-text);
  color: var(--color-bg-light);
  padding: 1rem 3rem;
  border: 2px solid var(--color-text);
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.consultation-button:hover {
  background: var(--color-bg-light);
  color: var(--color-text);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(167, 95, 55, 0.25);
}

/* ========================================
   13. FOOTER
   ======================================== */
.site-footer {
  background: var(--color-text);
  color: var(--color-bg-light);
  padding: 4rem 2rem 0;
  margin-top: 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-branding .footer-site-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-bg-light);
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(250, 249, 247, 0.7);
  margin: 0;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-bg-light);
  margin: 0 0 1.25rem 0;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-brand);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(250, 249, 247, 0.75);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-menu a:hover {
  color: var(--color-brand);
  padding-left: 4px;
}

.footer-contact-item {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(250, 249, 247, 0.75);
  margin: 0 0 0.75rem 0;
  line-height: 1.6;
}

.footer-contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-brand);
  margin-bottom: 0.15rem;
}

.footer-contact-item a {
  color: rgba(250, 249, 247, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--color-brand);
}

.footer-social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social-logo {
  height: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  transform: translateY(-3px);
}

.footer-social-link:hover .footer-social-logo {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 249, 247, 0.15);
  padding: 1.5rem 0;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(250, 249, 247, 0.6);
  margin: 0;
}

.footer-legal-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(250, 249, 247, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal-link:hover {
  color: var(--color-brand);
}

/* ========================================
   14. NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
  padding: 4rem 2rem;
}

.newsletter-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 3rem;
}

.newsletter-content-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  text-align: left;
}

.newsletter-text-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
}

.newsletter-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 0 1.5rem 0;
}

.newsletter-bonus {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-brand);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-bonus::before {
  content: '✓';
  font-weight: 700;
  font-size: 1rem;
}

.newsletter-form-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
  padding: 2rem;
  background: var(--color-bg-light);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.newsletter-placeholder {
  color: var(--color-nature);
  font-size: 0.95rem;
  text-align: center;
  margin: 0;
}

/* ========================================
   15. BLOG - HEADER
   ======================================== */
.blog-header {
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.blog-header-container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-header-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-brand);
  margin: 0 0 1rem 0;
}

.blog-header-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

.archive-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-nature);
  margin-bottom: 0.75rem;
}

/* ========================================
   16. BLOG - CATEGORY FILTER
   ======================================== */
.category-filter-section {
  padding: 0 2rem 1rem;
}

.category-filter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.category-filter-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.3rem;
  background-color: #ffffff;
  color: var(--color-text);
  border: 1px solid rgba(41, 36, 33, 0.1);
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.category-filter-link:hover {
  background-color: var(--color-brand);
  color: #ffffff;
  border-color: var(--color-brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(167, 95, 55, 0.2);
}

.category-filter-link.is-active {
  background-color: var(--color-brand);
  color: #ffffff;
  border-color: var(--color-brand);
}

.category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 0.35rem;
  background-color: rgba(41, 36, 33, 0.08);
  color: var(--color-text);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.category-filter-link:hover .category-count,
.category-filter-link.is-active .category-count {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* ========================================
   17. BLOG - LISTING
   ======================================== */
.blog-section {
  padding: 2rem 2rem 4rem;
}

.blog-container {
  max-width: 80%;
  margin: 0 auto;
}

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

.blog-post-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-thumbnail {
  position: relative;
  overflow: hidden;
}

.blog-post-thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.blog-post-item:hover .blog-post-thumbnail img {
  transform: scale(1.05);
}

.blog-post-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background-color: var(--color-brand);
  color: #ffffff;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background-color 0.25s ease;
  z-index: 2;
}

.blog-post-category-badge:hover {
  background-color: #8c4e2c;
  color: #ffffff;
}

.blog-post-category-badge-no-image {
  position: static;
  display: inline-block;
  align-self: flex-start;
  margin: 1.5rem 1.5rem 0;
}

.blog-post-header {
  padding: 1.5rem 1.5rem 0;
}

.blog-post-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}

.blog-post-title a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-post-title a:hover {
  color: var(--color-brand);
}

.blog-post-meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-nature);
  margin-bottom: 1rem;
}

.blog-post-excerpt {
  padding: 0 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-excerpt p {
  margin: 0 0 1rem 0;
}

.blog-post-readmore {
  display: inline-block;
  margin: 1rem 1.5rem 1.5rem;
  padding: 0.6rem 1.4rem;
  background: var(--color-brand);
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.blog-post-readmore:hover {
  background-color: #8c4e2c;
  color: #ffffff;
  transform: translateX(4px);
}

.blog-no-posts {
  text-align: center;
  padding: 4rem 0;
  font-size: 1.1rem;
  color: var(--color-nature);
}

.blog-pagination {
  margin-top: 3rem;
  text-align: center;
}

.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--color-text);
  background-color: #ffffff;
  border: 1px solid rgba(41, 36, 33, 0.1);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.blog-pagination .page-numbers.current {
  background-color: var(--color-brand);
  color: #ffffff;
  border-color: var(--color-brand);
}

.blog-pagination .page-numbers:hover:not(.current) {
  background-color: var(--color-brand);
  color: #ffffff;
  border-color: var(--color-brand);
  transform: translateY(-2px);
}

.blog-pagination .page-numbers.dots {
  background: transparent;
  border: none;
  cursor: default;
}

/* ========================================
   18. SINGLE POST - ARTICLE
   ======================================== */
.single-post-header {
  padding: 4rem 2rem 2rem;
  text-align: center;
  background-color: var(--color-bg-second);
}

.single-post-header-container {
  max-width: 800px;
  margin: 0 auto;
}

.single-post-meta-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-nature);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-wrap: wrap;
}

.single-post-category {
  background: var(--color-brand);
  color: #ffffff;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
}

.single-post-category a {
  color: #ffffff;
  text-decoration: none;
}

.single-post-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 1.5rem 0;
}

.single-post-meta {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
}

.single-post-image {
  max-width: 1000px;
  margin: -2rem auto 3rem;
  padding: 0 2rem;
}

.single-post-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.single-post-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.single-post-content {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.single-post-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-brand);
  margin: 2.5rem 0 1rem;
}

.single-post-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  margin: 2rem 0 1rem;
}

.single-post-content p {
  margin-bottom: 1.5rem;
}

.single-post-content a {
  color: var(--color-brand);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.single-post-content a:hover {
  color: #8c4e2c;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

.single-post-content blockquote {
  border-left: 4px solid var(--color-brand);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-nature);
}

.single-post-content ul,
.single-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.single-post-content li {
  margin-bottom: 0.5rem;
}

.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(41, 36, 33, 0.1);
}

.single-post-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  background: var(--color-bg-light-dark);
  color: var(--color-text);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.single-post-tag:hover {
  background: var(--color-brand);
  color: #ffffff;
}

.single-post-navigation {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.single-post-nav-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.single-post-nav-item {
  flex: 1 1 45%;
  min-width: 250px;
  padding: 1.5rem;
  background: var(--color-bg-light-dark);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.single-post-nav-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.single-post-nav-next {
  text-align: right;
}

.single-post-nav-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-brand);
  margin-bottom: 0.5rem;
}

.single-post-nav-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.single-post-back {
  text-align: center;
  padding: 2rem 0 4rem;
}

.single-post-back-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

.single-post-back-link:hover {
  color: #8c4e2c;
}

/* ========================================
   19. STATIC PAGE
   ======================================== */
.static-page-header {
  padding: 4rem 2rem 2rem;
  text-align: center;
  background-color: var(--color-bg-second);
}

.static-page-header-container {
  max-width: 800px;
  margin: 0 auto;
}

.static-page-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-brand);
  margin: 0;
}

.static-page-image {
  max-width: 1000px;
  margin: -2rem auto 3rem;
  padding: 0 2rem;
}

.static-page-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.static-page-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.static-page-content {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.static-page-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-brand);
  margin: 2.5rem 0 1rem;
}

.static-page-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  margin: 2rem 0 1rem;
}

.static-page-content p {
  margin-bottom: 1.5rem;
}

.static-page-content a {
  color: var(--color-brand);
  text-decoration: underline;
}

.static-page-content a:hover {
  color: #8c4e2c;
}

.static-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

/* ========================================
   20. ABOUT PAGE (À PROPOS)
   ======================================== */
.about-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  background-color: var(--color-bg-second);
}

.about-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 1rem;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  margin: 0 0 1rem 0;
}

.about-hero-description {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.about-intro {
  padding: 4rem 2rem 2rem;
  background-color: var(--color-bg-light);
}

.about-intro-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--color-text);
  margin: 0;
  padding: 0;
}

.about-story,
.about-philosophy {
  padding: 4rem 2rem;
}

.about-story-container,
.about-philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-philosophy-container {
  grid-template-columns: 1.2fr 1fr;
}

.about-story-image-wrapper,
.about-philosophy-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-story-image,
.about-philosophy-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.about-story-image-placeholder,
.about-philosophy-image-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--color-bg-light-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-nature);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

.about-story-caption,
.about-philosophy-caption {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-nature);
  text-align: center;
  margin: 0;
  font-style: italic;
}

.about-story-eyebrow,
.about-philosophy-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 1rem;
}

.about-story-title,
.about-philosophy-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 1.5rem 0;
}

.about-story-text,
.about-philosophy-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
}

.about-story-text p,
.about-philosophy-text p {
  margin: 0 0 1.25rem 0;
  text-align: justify;
}

.about-story-text strong,
.about-philosophy-text strong {
  color: var(--color-brand);
  font-weight: 600;
}

.about-values {
  padding: 5rem 2rem;
  background-color: var(--color-bg-light-dark);
}

.about-values-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-values-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 3rem 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.about-value-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-value-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-brand);
  opacity: 0.4;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.about-value-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.75rem 0;
}

.about-value-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
  text-align: justify;
}

.about-quote {
  padding: 5rem 2rem;
  background-color: var(--color-bg-light);
}

.about-quote-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.about-quote-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  font-style: italic;
  color: var(--color-text);
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.about-quote-text::before {
  content: '"';
  display: block;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--color-brand);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.about-quote-author {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-cta {
  padding: 5rem 2rem;
  background-color: var(--color-bg-second);
  text-align: center;
}

.about-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 1rem 0;
}

.about-cta-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 2rem 0;
}

.about-cta-button {
  display: inline-block;
  background: var(--color-text);
  color: var(--color-bg-light);
  padding: 1rem 3rem;
  border: 2px solid var(--color-text);
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.about-cta-button:hover {
  background: var(--color-bg-light);
  color: var(--color-text);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(167, 95, 55, 0.25);
}

/* ========================================
   21. SEARCH PAGE
   ======================================== */
.search-header {
  padding: 3rem 2rem 2rem;
  text-align: center;
  background-color: var(--color-bg-second);
}

.search-header-container {
  max-width: 700px;
  margin: 0 auto;
}

.search-header-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
}

.search-query {
  color: var(--color-brand);
}

.search-header-count {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  margin: 0 0 1.5rem 0;
  opacity: 0.7;
}

.search-header-form {
  max-width: 500px;
  margin: 0 auto;
}

.search-header-form .search-form {
  box-shadow: 0 4px 20px rgba(41, 36, 33, 0.08);
}

.search-no-results {
  max-width: 100%;
  margin: 3rem auto 4rem;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-bg-light-dark);
  border-radius: 12px;
}

.search-no-results-icon {
  color: var(--color-brand);
  opacity: 0.35;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.search-no-results-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
}

.search-no-results-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 1.5rem 0;
  opacity: 0.8;
}

.search-no-results-form {
  max-width: 380px;
  margin: 0 auto 1.5rem;
}

.search-no-results-button {
  display: inline-block;
  background: var(--color-text);
  color: var(--color-bg-light);
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--color-text);
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.search-no-results-button:hover {
  background: var(--color-bg-light);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(167, 95, 55, 0.25);
}

/* ========================================
   22. 404 PAGE
   ======================================== */
.error-404 {
  padding: 5rem 2rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.error-404-code {
  display: block;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand);
  opacity: 0.2;
  margin-bottom: 0.5rem;
}

.error-404-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 1rem 0;
}

.error-404-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.error-404-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404-button-primary {
  background: var(--color-text);
  color: var(--color-bg-light);
  border: 2px solid var(--color-text);
}

.error-404-button-primary:hover {
  background: var(--color-bg-light);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(167, 95, 55, 0.25);
}

.error-404-button-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.error-404-button-secondary:hover {
  background: var(--color-text);
  color: var(--color-bg-light);
  transform: translateY(-2px);
}

.error-404-suggestions {
  padding-top: 3rem;
  border-top: 1px solid rgba(41, 36, 33, 0.1);
}

.error-404-suggestions-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 1.5rem 0;
}

.error-404-suggestions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.error-404-suggestion-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--color-bg-light-dark);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-404-suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.error-404-suggestion-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-brand);
}

.error-404-suggestion-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.error-404-empty {
  font-family: var(--font-body);
  color: var(--color-nature);
  grid-column: 1 / -1;
  text-align: center;
}

/* ========================================
   23. BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-brand);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(167, 95, 55, 0.3);
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: #8c4e2c;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(167, 95, 55, 0.45);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--color-brand);
  outline-offset: 3px;
}

.back-to-top svg {
  display: block;
}

/* ========================================
   24. RESPONSIVE : HEADER
   ======================================== */
@media (max-width: 1024px) {
  .main-navigation {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-container {
    padding: 1rem 1.5rem;
    gap: 1rem;
  }

  .site-title {
    font-size: 2rem;
  }

  .site-header.is-scrolled .site-title {
    font-size: 1.6rem;
  }

  .site-header.is-scrolled .header-cta-button {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
  }

  .about-story-container,
  .about-philosophy-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-philosophy-image-wrapper {
    order: -1;
  }

  .about-story-title,
  .about-philosophy-title,
  .about-values-title,
  .about-quote-text,
  .about-cta-title {
    font-size: 2.2rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   25. RESPONSIVE : HERO STACK
   ======================================== */
@media (max-width: 1200px) {
  .hero-container {
    flex-direction: column;
    padding: 0;
    min-height: auto;
  }

  .hero-content {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    padding: 3rem 2rem;
    margin: 0;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    text-align: justify;
    max-width: 700px;
  }

  .hero-button {
    align-self: center;
  }

  .hero-image {
    position: relative;
    top: 0;
    right: 0;
    bottom: auto;
    margin-top: -2rem;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-image-img {
    max-width: 80%;
    height: auto;
    max-height: 500px;
  }
}

/* ========================================
   26. RESPONSIVE : TABLETTE
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-container {
    gap: 2rem;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .consultation-content-wrapper {
    gap: 2rem;
  }

  .consultation-title {
    font-size: 2.5rem;
  }

  .newsletter-content-wrapper {
    gap: 2rem;
  }

  .newsletter-title {
    font-size: 2.5rem;
  }

  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   27. RESPONSIVE : MOBILE
   ======================================== */
@media (max-width: 768px) {
  /* Header */
  .header-container {
    padding: 0.8rem 1rem;
  }

  .site-title {
    font-size: 1.6rem;
  }

  .site-header.is-scrolled .header-container {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .site-header.is-scrolled .site-title {
    font-size: 1.4rem;
  }

  .header-cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .mobile-menu-panel {
    width: 280px;
    right: -280px;
  }

  /* Search */
  .search-toggle {
    padding: 0.4rem;
  }

  .search-toggle svg {
    width: 20px;
    height: 20px;
  }

  .header-search-overlay {
    padding-top: 10vh;
  }

  .header-search-close {
    top: -50px;
    right: 1rem;
    font-size: 2rem;
  }

  .header-search-container .search-form-input {
    padding: 1rem 1.2rem;
    font-size: 1.05rem;
  }

  /* Hero */
  .hero-content {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-image-img {
    max-width: 90%;
    max-height: 400px;
  }

  /* Ebook Promo */
  .ebook-promo {
    padding: 2rem 1rem;
  }

  .ebook-promo-container {
    flex-direction: column;
    gap: 2rem;
  }

  .ebook-promo-content {
    flex: 1 1 100%;
    text-align: center;
  }

  .ebook-promo-image-wrapper {
    display: none;
  }

  .ebook-promo-image-mobile {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .ebook-promo-image-mobile .ebook-promo-image {
    max-width: 60%;
    transform: rotate(2deg);
  }

  .ebook-promo-title {
    font-size: 2rem;
    width: 100%;
  }

  .ebook-promo-meta {
    justify-content: center;
  }

  .ebook-promo-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* Podcast */
  .podcast-section {
    padding: 2rem 1rem;
  }

  .podcast-title {
    font-size: 2rem;
  }

  .podcast-player {
    padding: 1rem;
  }

  /* Social */
  .social-section {
    padding: 2rem 1rem;
  }

  .social-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .social-links {
    gap: 2rem;
  }

  .social-logo {
    height: 36px;
    max-width: 150px;
  }

  .social-name {
    font-size: 0.85rem;
  }

  /* About */
  .about-section {
    padding: 2rem 1rem;
  }

  .about-container {
    flex-direction: column;
    gap: 2rem;
  }

  .about-content {
    flex: 1 1 100%;
    text-align: center;
  }

  .about-media {
    flex: 1 1 100%;
    width: 100%;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
    text-align: justify;
  }

  .about-button {
    display: inline-block;
  }

  .about-video-wrapper {
    border-radius: 8px;
  }

  /* Consultation */
  .consultation-section {
    padding: 3rem 1rem;
  }

  .consultation-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .consultation-content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .consultation-image-wrapper,
  .consultation-text-wrapper {
    flex: 1 1 100%;
    width: 100%;
  }

  .consultation-text-wrapper {
    align-items: center;
    text-align: center;
  }

  .consultation-description {
    font-size: 1rem;
    text-align: justify;
  }

  .consultation-button {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  /* Footer */
  .site-footer {
    padding: 3rem 1rem 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-heading {
    font-size: 1.1rem;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-social-links {
    justify-content: flex-start;
  }

  .footer-social-logo {
    height: 24px;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 3rem 1rem;
  }

  .newsletter-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .newsletter-content-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .newsletter-text-wrapper,
  .newsletter-form-wrapper {
    flex: 1 1 100%;
    width: 100%;
  }

  .newsletter-bonus {
    justify-content: center;
  }

  .newsletter-form-wrapper {
    padding: 1.5rem 1rem;
  }

  /* Blog */
  .blog-header {
    padding: 3rem 1rem 1.5rem;
  }

  .blog-header-title {
    font-size: 2.5rem;
  }

  .blog-header-description {
    font-size: 1rem;
  }

  .category-filter-section {
    padding: 0 1rem 1rem;
  }

  .category-filter-container {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .category-filter-link {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .blog-section {
    padding: 1.5rem 1rem 3rem;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-post-thumbnail img {
    height: 200px;
  }

  .blog-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 0.7rem;
    font-size: 0.9rem;
  }

  /* Single Post */
  .single-post-header {
    padding: 3rem 1rem 1.5rem;
  }

  .single-post-title {
    font-size: 2rem;
  }

  .single-post-meta-top {
    font-size: 0.75rem;
  }

  .single-post-image {
    margin: -1rem auto 2rem;
    padding: 0 1rem;
  }

  .single-post-content-wrapper {
    padding: 0 1rem 2rem;
  }

  .single-post-content {
    font-size: 1rem;
  }

  .single-post-content h2 {
    font-size: 1.6rem;
  }

  .single-post-content h3 {
    font-size: 1.3rem;
  }

  .single-post-navigation {
    padding: 0 1rem;
  }

  .single-post-nav-item {
    flex: 1 1 100%;
    text-align: left;
  }

  .single-post-nav-next {
    text-align: left;
  }

  /* Static Page */
  .static-page-header {
    padding: 3rem 1rem 1.5rem;
  }

  .static-page-title {
    font-size: 2.5rem;
  }

  .static-page-image {
    margin: -1rem auto 2rem;
    padding: 0 1rem;
  }

  .static-page-content-wrapper {
    padding: 0 1rem 3rem;
  }

  .static-page-content {
    font-size: 1rem;
  }

  /* About Page */
  .about-hero {
    padding: 3rem 1rem 2rem;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-description {
    font-size: 1rem;
  }

  .about-intro {
    padding: 3rem 1rem 1rem;
  }

  .about-intro-text {
    font-size: 1.3rem;
  }

  .about-story,
  .about-philosophy {
    padding: 3rem 1rem;
  }

  .about-story-title,
  .about-philosophy-title,
  .about-values-title,
  .about-quote-text,
  .about-cta-title {
    font-size: 1.8rem;
  }

  .about-story-text,
  .about-philosophy-text {
    font-size: 1rem;
  }

  .about-values {
    padding: 3rem 1rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-value-card {
    padding: 1.5rem;
  }

  .about-quote {
    padding: 3rem 1rem;
  }

  .about-quote-text {
    font-size: 1.5rem;
  }

  .about-quote-text::before {
    font-size: 3rem;
  }

  .about-cta {
    padding: 3rem 1rem;
  }

  .about-cta-text {
    font-size: 1rem;
  }

  .about-cta-button {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  /* Search Page */
  .search-header {
    padding: 2.5rem 1rem 1.5rem;
  }

  .search-header-title {
    font-size: 1.6rem;
  }

  .search-no-results {
    padding: 2rem 1rem;
    margin: 2rem auto 3rem;
  }

  .search-no-results-title {
    font-size: 1.5rem;
  }

  /* 404 Page */
  .error-404 {
    padding: 3rem 1rem;
  }

  .error-404-code {
    font-size: 5rem;
  }

  .error-404-title {
    font-size: 2rem;
  }

  .error-404-text {
    font-size: 1rem;
  }

  .error-404-suggestions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .error-404-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-404-button {
    text-align: center;
  }

  /* Back to top */
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
}

/* ========================================
   28. RESPONSIVE : TRÈS PETITS ÉCRANS
   ======================================== */
@media (max-width: 480px) {
  .mobile-menu-panel {
    width: 85%;
    right: -85%;
  }

  .ebook-promo-image-mobile .ebook-promo-image {
    max-width: 70%;
  }

  .single-post-title {
    font-size: 1.75rem;
  }

  .blog-header-title {
    font-size: 2rem;
  }

  .static-page-title {
    font-size: 2rem;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
  }

  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ========================================
   29. PRÉFÉRENCES DE MOUVEMENT RÉDUIT
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header,
  .site-header .header-container,
  .site-header .site-title,
  .site-header .header-cta-button,
  .back-to-top {
    transition: none;
  }
}