/*
Theme Name: Valérie Pollet - Coach & Thérapeute
Theme URI: https://www.valerie-pollet.fr
Author: Agence uPerf
Author URI: https://uperf.fr
Description: Thème WordPress personnalisé pour Valérie Pollet - Coach, Médiatrice & Thérapeute à Blois. Design Warm Editorial avec typographie Cormorant Garamond + Outfit.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: valerie-pollet
Tags: one-page, custom-colors, custom-logo, featured-images, translation-ready
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

/* ============================================
   Valérie Pollet — Warm Editorial Design
   Pixel-perfect reproduction du site React
   ============================================ */

/* --- CSS Variables --- */
:root {
  --cream: #FAF8F5;
  --cream-warm: #F5F0E8;
  --chocolate: #3D2B1F;
  --chocolate-light: #6B5B50;
  --terracotta: #C67B5C;
  --terracotta-light: #D4A088;
  --terracotta-dark: #A8624A;
  --olive: #7A8B6F;
  --olive-light: #9AAB8F;
  --white: #FFFFFF;
  --border: #E8E2DA;

  --font-editorial: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(61,43,31,0.05);
  --shadow-md: 0 4px 20px rgba(61,43,31,0.08);
  --shadow-lg: 0 25px 50px rgba(61,43,31,0.1);
  --shadow-xl: 0 25px 50px rgba(61,43,31,0.15);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--chocolate);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-editorial);
  font-weight: 600;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  padding: 1.25rem 0;
}

.site-header--transparent {
  background: linear-gradient(to bottom, rgba(61,43,31,0.4), transparent);
}

.site-header--cream {
  background: rgba(250,248,245,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header.scrolled {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header__logo {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.header__logo-name span {
  margin-left: 0.25rem;
}

.header__logo-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.125rem;
  transition: color 0.3s;
}

/* Dark hero text colors */
.site-header--transparent .header__logo-name { color: var(--white); }
.site-header--transparent .header__logo-name span { color: var(--terracotta-light); }
.site-header--transparent .header__logo-sub { color: rgba(255,255,255,0.7); }

/* Light/scrolled text colors */
.site-header--cream .header__logo-name,
.site-header.scrolled .header__logo-name { color: var(--chocolate); }
.site-header--cream .header__logo-name span,
.site-header.scrolled .header__logo-name span { color: var(--terracotta); }
.site-header--cream .header__logo-sub,
.site-header.scrolled .header__logo-sub { color: var(--chocolate-light); }

/* Desktop Nav */
.header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.header__nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s;
}

/* Nav link colors - transparent header */
.site-header--transparent .header__nav a {
  color: rgba(255,255,255,0.85);
}
.site-header--transparent .header__nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.site-header--transparent .header__nav a.active {
  color: var(--terracotta-light);
  background: rgba(255,255,255,0.1);
}

/* Nav link colors - cream/scrolled header */
.site-header--cream .header__nav a,
.site-header.scrolled .header__nav a {
  color: var(--chocolate-light);
}
.site-header--cream .header__nav a:hover,
.site-header.scrolled .header__nav a:hover {
  color: var(--terracotta);
  background: rgba(198,123,92,0.05);
}
.site-header--cream .header__nav a.active,
.site-header.scrolled .header__nav a.active {
  color: var(--terracotta);
  background: rgba(198,123,92,0.08);
}

/* CTA Button */
.header__cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.header__cta:hover {
  background: var(--terracotta-dark);
  color: var(--white);
}

.header__cta svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile Toggle */
.header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

.header__toggle:hover { background: rgba(0,0,0,0.05); }

.site-header--transparent .header__toggle { color: var(--white); }
.site-header--cream .header__toggle,
.site-header.scrolled .header__toggle { color: var(--chocolate); }

.header__toggle svg { width: 1.5rem; height: 1.5rem; }

/* Mobile Menu */
.header__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(250,248,245,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  animation: slideIn 0.3s ease;
}

.header__mobile.is-open { display: block; }

.header__mobile a {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--chocolate-light);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.header__mobile a:hover {
  color: var(--terracotta);
  background: rgba(198,123,92,0.05);
}

.header__mobile a.active {
  color: var(--terracotta);
  background: rgba(198,123,92,0.08);
}

.header__mobile .header__cta {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
  margin-left: 0;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__cta { display: inline-flex; }
  .header__toggle { display: none; }
  .header__logo-name { font-size: 1.875rem; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(61,43,31,0.8), rgba(61,43,31,0.6), transparent);
}

.hero .container {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero__content {
  max-width: 42rem;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__title {
  font-family: var(--font-editorial);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__title em {
  color: var(--terracotta-light);
  font-style: italic;
}

.hero__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__text strong {
  color: var(--white);
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  animation: fadeIn 0.8s ease 1.2s both;
}

.hero__badges-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.hero__badges-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--terracotta-light);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 0.8s ease 1.5s both;
}

.hero__scroll-dot {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.hero__scroll-dot span {
  width: 0.375rem;
  height: 0.375rem;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}

@media (min-width: 640px) {
  .hero__title { font-size: 3.125rem; }
  .hero__buttons { flex-direction: row; }
}

@media (min-width: 768px) {
  .hero__title { font-size: 3.75rem; }
  .hero__text { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 4.5rem; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn svg { width: 1rem; height: 1rem; }

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 8px 25px rgba(198,123,92,0.25);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn--outline-terracotta {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.btn--outline-terracotta:hover {
  background: var(--terracotta);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--terracotta);
}

.btn--white:hover {
  background: var(--cream);
  color: var(--terracotta);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 6rem 0;
  background: var(--cream);
}

.services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.services__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.services__title {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.services__subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--chocolate-light);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
}

.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.service-card__badge--terracotta { background: var(--terracotta); }
.service-card__badge--olive { background: var(--olive); }
.service-card__badge--chocolate { background: var(--chocolate); }

.service-card__body {
  padding: 1.75rem;
}

.service-card__category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.service-card__category svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-card__category span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card__category--terracotta svg,
.service-card__category--terracotta span { color: var(--terracotta); }
.service-card__category--olive svg,
.service-card__category--olive span { color: var(--olive); }
.service-card__category--chocolate svg,
.service-card__category--chocolate span { color: var(--chocolate-light); }

.service-card__name {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.service-card:hover .service-card__name--terracotta { color: var(--terracotta); }
.service-card:hover .service-card__name--olive { color: var(--olive); }

.service-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
}

.service-card__link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

.service-card:hover .service-card__link svg {
  transform: translateX(0.25rem);
}

.service-card__link--terracotta { color: var(--terracotta); }
.service-card__link--olive { color: var(--olive); }

@media (min-width: 768px) {
  .services { padding: 8rem 0; }
  .services__header { margin-bottom: 5rem; }
  .services__title { font-size: 3.125rem; }
}

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

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-preview__image {
  position: relative;
}

.about-preview__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-preview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__floating-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 200px;
}

.about-preview__floating-number {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 700;
  display: block;
}

.about-preview__floating-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.9);
}

.about-preview__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-preview__title {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.about-preview__title em {
  color: var(--terracotta);
  font-style: italic;
}

.about-preview__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--chocolate-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-preview__text strong {
  color: var(--chocolate);
}

.about-preview__checklist,
.about-preview__badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-preview__check-item,
.about-preview__badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-preview__check-item svg,
.about-preview__badge-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--olive);
  flex-shrink: 0;
}

.about-preview__check-item span,
.about-preview__badge-item span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate);
}

.about-preview__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--terracotta);
  transition: gap 0.3s;
}

.about-preview__link:hover {
  gap: 0.75rem;
  color: var(--terracotta);
}

.about-preview__link svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .about-preview__checklist,
  .about-preview__badges { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .about-preview { padding: 8rem 0; }
  .about-preview__title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .about-preview {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
  .about-preview__title { font-size: 3.125rem; }
}

/* ============================================
   WHY CHOOSE ME SECTION
   ============================================ */
.why-me {
  padding: 6rem 0;
  background: var(--cream-warm);
}

.why-me__header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-me__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--olive);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.why-me__title {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-top: 1rem;
}

.why-me__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.why-me-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
  height: 100%;
}

.why-me-card:hover { box-shadow: var(--shadow-md); }

.why-me-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-me-card__icon--terracotta {
  background: rgba(198,123,92,0.1);
  color: var(--terracotta);
}

.why-me-card__icon--olive {
  background: rgba(122,139,111,0.1);
  color: var(--olive);
}

.why-me-card__icon svg { width: 1.5rem; height: 1.5rem; }

.why-me-card__title {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.75rem;
}

.why-me-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .why-me { padding: 8rem 0; }
  .why-me__title { font-size: 3.125rem; }
  .why-me__grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 6rem 0;
  background: var(--chocolate);
  color: var(--cream-warm);
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.testimonials__title {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--cream-warm);
  margin-top: 1rem;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: var(--radius-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card__quote-icon {
  width: 2rem;
  height: 2rem;
  color: var(--terracotta-light);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-card__stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--terracotta-light);
  color: var(--terracotta-light);
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
  font-style: italic;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream-warm);
}

.testimonial-card__role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(245,240,232,0.6);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .testimonials { padding: 8rem 0; }
  .testimonials__title { font-size: 3.125rem; }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   CPF SECTION
   ============================================ */
.cpf-section {
  padding: 6rem 0;
  background: var(--white);
}

.cpf-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.cpf-section__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--olive);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cpf-section__title {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.cpf-section__title em {
  color: var(--terracotta);
  font-style: italic;
}

.cpf-section__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--chocolate-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cpf-section__checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cpf-section__check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cpf-section__check-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.cpf-section__check-item span {
  font-family: var(--font-body);
  color: var(--chocolate);
}

/* Steps */
.cpf-section__steps {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.cpf-section__steps-title {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 2rem;
}

.cpf-section__step {
  display: flex;
  gap: 1.25rem;
}

.cpf-section__step + .cpf-section__step {
  margin-top: 2rem;
}

.cpf-section__step-number {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 700;
  color: rgba(198,123,92,0.3);
  flex-shrink: 0;
  width: 3rem;
}

.cpf-section__step-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.25rem;
}

.cpf-section__step-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .cpf-section { padding: 8rem 0; }
  .cpf-section__title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .cpf-section__grid { grid-template-columns: repeat(2, 1fr); }
  .cpf-section__title { font-size: 3.125rem; }
  .cpf-section__steps { padding: 3rem; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 6rem 0;
  background: var(--cream);
}

.faq__header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.faq__title {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-top: 1rem;
}

.faq__list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--chocolate);
  padding-right: 1rem;
}

.faq__item summary svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq__item[open] summary svg {
  transform: rotate(90deg);
}

.faq__item-answer {
  padding: 0 1.5rem 1.5rem;
}

.faq__item-answer p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .faq { padding: 8rem 0; }
  .faq__title { font-size: 3.125rem; }
}

/* ============================================
   FOOTER
   ============================================ */
/* CTA Band */
.footer-cta {
  background: var(--terracotta);
  padding: 3rem 0;
  text-align: center;
}

.footer-cta__title {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-cta__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-cta { padding: 4rem 0; }
  .footer-cta__title { font-size: 2.5rem; }
  .footer-cta__buttons { flex-direction: row; }
}

/* Main Footer */
.site-footer {
  background: var(--chocolate);
  color: var(--cream-warm);
  padding: 4rem 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.site-footer__brand-name {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream-warm);
}

.site-footer__brand-name span { color: var(--terracotta-light); }

.site-footer__brand-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245,240,232,0.7);
  margin-top: 1rem;
  line-height: 1.7;
}

.site-footer__brand-tags {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.site-footer__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.site-footer__tag--terracotta {
  background: rgba(198,123,92,0.2);
  color: var(--terracotta-light);
}

.site-footer__tag--olive {
  background: rgba(122,139,111,0.2);
  color: var(--olive-light);
}

.site-footer__col-title {
  font-family: var(--font-editorial);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream-warm);
  margin-bottom: 1.25rem;
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245,240,232,0.7);
  transition: color 0.3s;
}

.site-footer__links a:hover { color: var(--terracotta-light); }

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.site-footer__contact-item + .site-footer__contact-item {
  margin-top: 1rem;
}

.site-footer__contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--terracotta-light);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.site-footer__contact-item span,
.site-footer__contact-item a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245,240,232,0.7);
}

.site-footer__contact-item a:hover { color: var(--terracotta-light); }

/* Bottom bar */
.site-footer__bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.site-footer__copyright,
.site-footer__credit {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(245,240,232,0.5);
}

.site-footer__credit a {
  color: var(--terracotta-light);
  transition: color 0.3s;
}

.site-footer__credit a:hover { color: var(--terracotta); }

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

@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-float__btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.whatsapp-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

.whatsapp-float__btn svg { width: 1.5rem; height: 1.5rem; }

.whatsapp-float__tooltip {
  background: var(--white);
  color: var(--chocolate);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  display: none;
}

@media (min-width: 768px) {
  .whatsapp-float__tooltip { display: block; }
}

/* ============================================
   PAGE TEMPLATES (inner pages)
   ============================================ */

/* Page Hero */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--cream);
  text-align: center;
}

.page-hero--left { text-align: left; }

.page-hero__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-hero__title {
  font-family: var(--font-editorial);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--chocolate);
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.page-hero__title em {
  color: var(--terracotta);
  font-style: italic;
}

.page-hero__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--chocolate-light);
  max-width: 42rem;
  line-height: 1.7;
}

.page-hero--left .page-hero__text { margin: 0; }
.page-hero:not(.page-hero--left) .page-hero__text { margin: 0 auto; }

@media (min-width: 768px) {
  .page-hero { padding: 10rem 0 5rem; }
  .page-hero__title { font-size: 3.125rem; }
}

@media (min-width: 1024px) {
  .page-hero__title { font-size: 3.75rem; }
}

/* Content sections */
.content-section {
  padding: 4rem 0;
}

.content-section--cream { background: var(--cream); }
.content-section--white { background: var(--white); }
.content-section--cream-warm { background: var(--cream-warm); }
.content-section--chocolate { background: var(--chocolate); color: var(--cream-warm); }

@media (min-width: 768px) {
  .content-section { padding: 6rem 0; }
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

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

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

/* Info cards */
.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.info-card--bordered {
  border: 1px solid var(--border);
}

.info-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-card__icon--terracotta {
  background: rgba(198,123,92,0.1);
  color: var(--terracotta);
}

.info-card__icon--olive {
  background: rgba(122,139,111,0.1);
  color: var(--olive);
}

.info-card__icon--chocolate {
  background: rgba(61,43,31,0.1);
  color: var(--chocolate);
}

.info-card__icon svg { width: 1.5rem; height: 1.5rem; }

.info-card__title {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.5rem;
}

.info-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

/* Section titles (reusable) */
.section-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label--terracotta { color: var(--terracotta); }
.section-label--olive { color: var(--olive); }

.section-title {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.section-title em {
  color: var(--terracotta);
  font-style: italic;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.5rem; }
}

/* Download cards */
.download-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.download-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta);
}

.download-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(198,123,92,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--terracotta);
}

.download-card__info { flex: 1; }

.download-card__title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--chocolate);
}

.download-card__meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--chocolate-light);
  margin-top: 0.25rem;
}

.download-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.3s;
}

.download-card__btn:hover { background: var(--terracotta-dark); }
.download-card__btn svg { width: 1rem; height: 1rem; }

/* Contact Form 7 Custom Styles */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate);
  transition: all 0.3s;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(198,123,92,0.15);
}

.wpcf7 input[type="submit"] {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--terracotta-dark);
}

.wpcf7 label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--chocolate);
  display: block;
  margin-bottom: 0.5rem;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.25rem;
}

/* Values section (À propos) */
.values-section {
  padding: 6rem 0;
  background: var(--chocolate);
  color: var(--cream-warm);
  text-align: center;
}

.values-section__title {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--cream-warm);
  margin-top: 1rem;
  margin-bottom: 3rem;
}

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

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.value-card__title {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream-warm);
  margin-bottom: 0.75rem;
}

.value-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .values-section { padding: 8rem 0; }
  .values-section__title { font-size: 3.125rem; }
  .values__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Certifications grid (À propos) */
.certifications__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cert-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
}

.cert-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: rgba(198,123,92,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--terracotta);
}

.cert-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.25rem;
}

.cert-card__detail {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
}

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

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

/* Contact page specifics */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info__item + .contact-info__item {
  margin-top: 1.5rem;
}

.contact-info__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: rgba(198,123,92,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--terracotta);
}

.contact-info__label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.25rem;
}

.contact-info__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

.contact-info__text a {
  color: var(--terracotta);
}

.contact-info__text a:hover { color: var(--terracotta-dark); }

/* Good to know box */
.good-to-know {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-top: 2.5rem;
}

.good-to-know__title {
  font-family: var(--font-editorial);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 1rem;
}

.good-to-know__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.good-to-know__item + .good-to-know__item {
  margin-top: 1rem;
}

.good-to-know__item svg {
  width: 1rem;
  height: 1rem;
  color: var(--olive);
  flex-shrink: 0;
}

.good-to-know__item span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate);
}

/* Contact form wrapper */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.contact-form-wrap__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-form-wrap__header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--terracotta);
}

.contact-form-wrap__title {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--chocolate);
}

@media (min-width: 1024px) {
  .contact-form-wrap { padding: 2.5rem; }
}

/* Map placeholder */
.map-placeholder {
  background: rgba(61,43,31,0.05);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
}

.map-placeholder svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--terracotta);
  margin: 0 auto 1rem;
}

.map-placeholder__title {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.75rem;
}

.map-placeholder__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
}

/* Timeline (À propos) */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--terracotta);
  transform: translateX(calc(-50% + 1px));
}

.timeline__year {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.25rem;
}

.timeline__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.25rem;
}

.timeline__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.6;
}

/* Mentions légales / Politique */
.legal-page {
  padding: 8rem 0 4rem;
  background: var(--cream);
}

.legal-page .container {
  max-width: 56rem;
}

.legal-page h1 {
  font-family: var(--font-editorial);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--terracotta);
}

.legal-page a:hover { color: var(--terracotta-dark); }

/* Blog (basic) */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.blog-card:hover { box-shadow: var(--shadow-md); }

.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__body { padding: 1.5rem; }

.blog-card__category {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card__title {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }


/* ============================================
   ADDITIONAL MISSING STYLES
   Classes used in PHP templates
   ============================================ */

/* --- Hero variants --- */
.hero__inner {
  max-width: 42rem;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title--accent {
  color: var(--terracotta-light);
}

/* --- About Preview Content --- */
.about-preview__content {
  display: flex;
  flex-direction: column;
}

.about-preview__title--accent {
  color: var(--terracotta);
  font-style: italic;
}

/* --- Content Section Dark --- */
.content-section--dark {
  background: var(--chocolate);
  color: var(--cream-warm);
}

/* --- Section Header (reusable) --- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-header__label--terracotta { color: var(--terracotta); }
.section-header__label--terracotta-light { color: var(--terracotta-light); }
.section-header__label--olive { color: var(--olive); }

.section-header__title {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.section-header__title--light {
  color: var(--cream-warm);
}

.section-header__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--chocolate-light);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section-header__title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .section-header__title { font-size: 3.125rem; }
}

/* --- Container variants --- */
.container--narrow {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.container--medium {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container--narrow,
  .container--medium { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container--narrow,
  .container--medium { padding: 0 2rem; }
}

/* --- Content Text --- */
.content-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--chocolate-light);
  line-height: 1.8;
}

.content-text--two-cols {
  columns: 1;
  column-gap: 3rem;
}

@media (min-width: 768px) {
  .content-text--two-cols { columns: 2; }
}

/* --- Tags --- */
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.tag--terracotta {
  background: rgba(198,123,92,0.1);
  color: var(--terracotta);
}

.tag--terracotta-light {
  background: rgba(198,123,92,0.15);
  color: var(--terracotta);
}

.tag--olive {
  background: rgba(122,139,111,0.1);
  color: var(--olive);
}

.tag--olive-light {
  background: rgba(122,139,111,0.15);
  color: var(--olive);
}

.tag--chocolate {
  background: rgba(61,43,31,0.1);
  color: var(--chocolate);
}

/* --- Page Hero variants --- */
.page-hero--cream {
  background: var(--cream-warm);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .page-hero__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.page-hero__content {
  text-align: left;
}

.page-hero__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.page-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.page-hero__title--accent {
  color: var(--terracotta);
  font-style: italic;
}

.page-hero__title--accent-olive {
  color: var(--olive);
  font-style: italic;
}

.page-hero__text--centered {
  text-align: center;
  margin: 0 auto;
}

/* --- Button variants --- */
.btn--olive {
  background: var(--olive);
  color: var(--white);
}

.btn--olive:hover {
  background: var(--olive-light);
  color: var(--white);
}

.btn--rounded {
  border-radius: var(--radius-full);
}

.btn--full {
  width: 100%;
}

.btn--outline-terracotta {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.btn--outline-terracotta:hover {
  background: var(--terracotta);
  color: var(--white);
}

/* --- Bilan Cards --- */
.bilan-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.bilan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s;
}

.bilan-card:hover { box-shadow: var(--shadow-md); }

.bilan-card--light {
  background: var(--white);
}

.bilan-card--dark {
  background: var(--chocolate);
  color: var(--cream-warm);
}

.bilan-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.bilan-card__icon svg { width: 1.5rem; height: 1.5rem; }

.bilan-card__icon--terracotta {
  background: rgba(198,123,92,0.1);
  color: var(--terracotta);
}

.bilan-card__icon--terracotta-dark {
  background: rgba(198,123,92,0.2);
  color: var(--terracotta-light);
}

.bilan-card__special-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: var(--terracotta);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.bilan-card--dark .bilan-card__special-tag {
  background: var(--terracotta-light);
  color: var(--chocolate);
}

.bilan-card__title {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.75rem;
}

.bilan-card--dark .bilan-card__title { color: var(--cream-warm); }

.bilan-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.bilan-card--dark .bilan-card__text { color: rgba(245,240,232,0.8); }

.bilan-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.bilan-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
}

.bilan-card--dark .bilan-card__list li { color: rgba(245,240,232,0.75); }

.bilan-card__list li svg {
  width: 1rem;
  height: 1rem;
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.bilan-card--dark .bilan-card__list li svg { color: var(--olive-light); }

.bilan-card__pricing {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: auto;
}

.bilan-card__pricing--dark {
  border-top-color: rgba(255,255,255,0.1);
}

.bilan-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.bilan-card__price-value {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--terracotta);
}

.bilan-card--dark .bilan-card__price-value { color: var(--terracotta-light); }

.bilan-card__price-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
}

.bilan-card--dark .bilan-card__price-label { color: rgba(245,240,232,0.6); }

.bilan-card__price-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.bilan-card--dark .bilan-card__price-divider { background: rgba(255,255,255,0.1); }

.bilan-card__price-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--olive);
}

.bilan-card--dark .bilan-card__price-note { color: var(--olive-light); }

/* --- Phase Cards (Bilan) --- */
.phases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.phase-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.phase-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.phase-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: rgba(198,123,92,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phase-card__icon svg { width: 1.5rem; height: 1.5rem; color: var(--terracotta); }

.phase-card__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.phase-card__title {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 1rem;
}

.phase-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phase-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.6;
}

.phase-card__list li svg {
  width: 1rem;
  height: 1rem;
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* --- PDF Cards (Downloads) --- */
.pdf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.pdf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: all 0.3s;
}

.pdf-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta);
}

.pdf-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pdf-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: rgba(198,123,92,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pdf-card__icon svg { width: 1.25rem; height: 1.25rem; color: var(--terracotta); }

.pdf-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--chocolate);
}

.pdf-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pdf-card__download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--terracotta);
  transition: gap 0.3s;
}

.pdf-card__download:hover { gap: 0.75rem; color: var(--terracotta); }
.pdf-card__download svg { width: 1rem; height: 1rem; }

/* --- For Who Grid --- */
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.for-who-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.for-who-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.for-who-item__icon svg { width: 1.25rem; height: 1.25rem; }

.for-who-item__icon--olive {
  background: rgba(122,139,111,0.1);
  color: var(--olive);
}

/* --- Steps List --- */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 56rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-item__number {
  font-family: var(--font-editorial);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(198,123,92,0.2);
  flex-shrink: 0;
  line-height: 1;
  min-width: 3rem;
}

.step-item__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.25rem;
}

.step-item__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

/* --- Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: box-shadow 0.3s;
}

.feature-card:hover { box-shadow: var(--shadow-md); }

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card__icon svg { width: 1.5rem; height: 1.5rem; }

.feature-card__icon--terracotta {
  background: rgba(198,123,92,0.1);
  color: var(--terracotta);
}

.feature-card__icon--olive {
  background: rgba(122,139,111,0.1);
  color: var(--olive);
}

.feature-card__title {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.75rem;
}

.feature-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

/* --- Objective Cards --- */
.objectives-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.objective-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.objective-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.objective-card__icon svg { width: 1.5rem; height: 1.5rem; }

.objective-card__icon--terracotta {
  background: rgba(198,123,92,0.1);
  color: var(--terracotta);
}

.objective-card__icon--olive {
  background: rgba(122,139,111,0.1);
  color: var(--olive);
}

/* --- Blockquote Card --- */
.blockquote-card {
  background: var(--cream);
  border-left: 4px solid var(--terracotta);
  padding: 2rem;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  margin: 2rem 0;
}

.blockquote-card p {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--chocolate);
  line-height: 1.6;
}

.blockquote-card__source {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  margin-top: 1rem;
  font-style: normal;
}

/* --- Testimonials Grid (inner pages) --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-card__author {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream-warm);
}

/* --- Certifications Grid (inner pages) --- */
.certifications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

/* --- Values Grid (inner pages) --- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

/* --- About Hero (À propos page) --- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-hero-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.about-hero__image {
  position: relative;
}

.about-hero__portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 200px;
}

.about-hero__badge-number {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 700;
  display: block;
}

.about-hero__badge-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.9);
}

.about-hero__content {
  display: flex;
  flex-direction: column;
}

/* --- Timeline (inner pages) --- */
.timeline__item--last { padding-bottom: 0; }

.timeline__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline__icon svg { width: 1.25rem; height: 1.25rem; }

.timeline__icon--terracotta {
  background: rgba(198,123,92,0.1);
  color: var(--terracotta);
}

.timeline__icon--olive {
  background: rgba(122,139,111,0.1);
  color: var(--olive);
}

.timeline__content {
  flex: 1;
}

.timeline__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline__label--olive { color: var(--olive); }

.timeline__marker {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.timeline__line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 0.5rem auto;
  min-height: 2rem;
}

/* --- CPF Steps Card (inner pages) --- */
.cpf-steps-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.cpf-steps-card__title {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 2rem;
}

.cpf-steps-card__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cpf-steps-card__item {
  display: flex;
  gap: 1.25rem;
}

.cpf-steps-card__number {
  font-family: var(--font-editorial);
  font-size: 1.875rem;
  font-weight: 700;
  color: rgba(198,123,92,0.3);
  flex-shrink: 0;
  width: 3rem;
  line-height: 1;
}

.cpf-steps-card__item-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.25rem;
}

.cpf-steps-card__item-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

.cpf-section__content {
  display: flex;
  flex-direction: column;
}

.cpf-section__title--accent {
  color: var(--terracotta);
  font-style: italic;
}

/* --- FAQ (inner pages) --- */
.faq-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--chocolate);
  padding-right: 1rem;
}

.faq__question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq__item[open] .faq__question svg {
  transform: rotate(90deg);
}

.faq__answer {
  padding: 0 1.5rem 1.5rem;
}

.faq__answer p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

/* --- Contact page (inner pages) --- */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-form-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info__title {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 2rem;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

@media (min-width: 1024px) {
  .contact-form-card { padding: 2.5rem; }
}

.contact-form-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-form-card__header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--terracotta);
}

.contact-form-card__header h3 {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--chocolate);
}

/* --- Form elements --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--chocolate);
  display: block;
  margin-bottom: 0.5rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

.form-row--two {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-row--two { grid-template-columns: repeat(2, 1fr); }
}

.form-row--full {
  grid-template-columns: 1fr;
}

.form-disclaimer {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--chocolate-light);
  margin-top: 1rem;
  line-height: 1.6;
}

/* --- Institution Card --- */
.institution-card {
  background: var(--cream-warm);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .institution-card {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
}

.institution-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-xl);
  background: rgba(198,123,92,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.institution-card__icon svg { width: 2rem; height: 2rem; color: var(--terracotta); }

.institution-card__content {
  flex: 1;
}

.institution-card__content h3 {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.5rem;
}

.institution-card__content p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

.institution-card__download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-top: 0.75rem;
}

.institution-card__download svg { width: 1rem; height: 1rem; }
.institution-card__download:hover { color: var(--terracotta-dark); }

/* --- Map Placeholder (inner pages) --- */
.map-placeholder__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--terracotta);
  margin: 0 auto 1rem;
}

.map-placeholder__sub {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  margin-top: 0.5rem;
}

/* --- Legal Content --- */
.legal-content {
  padding: 4rem 0;
  background: var(--cream);
}

.legal-content .container {
  max-width: 56rem;
}

/* --- Mobile Menu icons --- */
.menu-icon,
.close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* --- Service Card title/text (inner pages) --- */
.service-card__title {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.75rem;
}

.service-card__title--olive { color: var(--olive); }

.service-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate-light);
  line-height: 1.7;
}

/* --- Utility: mt-12 --- */
.mt-12 { margin-top: 3rem; }

/* --- VPContact Form (custom class) --- */
.vp-contact-form input[type="text"],
.vp-contact-form input[type="email"],
.vp-contact-form input[type="tel"],
.vp-contact-form select,
.vp-contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chocolate);
  transition: all 0.3s;
}

.vp-contact-form input:focus,
.vp-contact-form select:focus,
.vp-contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(198,123,92,0.15);
}

.vp-contact-form input[type="submit"] {
  width: 100%;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.vp-contact-form input[type="submit"]:hover {
  background: var(--terracotta-dark);
}
