/* ============================================
   Des arbres et des hommes - Style principal
   Élagueur en Vendée
   ============================================ */

/* === Variables & Reset === */
:root {
  --vert-foret: #1a3a2a;
  --vert-mousse: #2d5a3d;
  --vert-feuille: #3d7a52;
  --vert-clair: #6ba368;
  --bois-fonce: #4a2c1a;
  --bois-moyen: #7a4e2d;
  --bois-clair: #a67c52;
  --terre: #8b6f47;
  --sable: #d4c5a9;
  --creme: #f5f0e6;
  --blanc-casse: #faf8f2;
  --noir-foret: #0d1f15;
  --texte: #2a2a2a;
  --texte-clair: #5a5a5a;
  --accent: #c17f3e;
  --accent-hover: #d4943f;
  --ombre: rgba(13, 31, 21, 0.15);
  --ombre-forte: rgba(13, 31, 21, 0.3);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font-titre: 'Playfair Display', Georgia, serif;
  --font-corps: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-corps);
  color: var(--texte);
  background-color: var(--blanc-casse);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--vert-mousse);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titre);
  color: var(--vert-foret);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
  margin-bottom: 1rem;
}

/* === Container === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* === Navigation === */
.nav-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 58, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}

.nav-top.scrolled {
  background: rgba(13, 31, 21, 0.98);
  box-shadow: 0 4px 20px var(--ombre-forte);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo span {
  font-family: var(--font-titre);
  color: var(--creme);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--sable);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #fff;
}

.btn-rappel {
  background: var(--accent);
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid var(--accent);
}

.btn-rappel:hover {
  background: transparent;
  color: var(--accent) !important;
}

.btn-rappel::after {
  display: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--creme);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Video === */
.hero-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 31, 21, 0.88) 0%,
    rgba(26, 58, 42, 0.82) 50%,
    rgba(13, 31, 21, 0.85) 100%
  );
  z-index: 1;
}

.hero-video .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 850px;
}

.hero-video h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-video .hero-subtitle {
  color: var(--sable);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-family: var(--font-titre);
  font-style: italic;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-video .hero-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Hero Image (pour pages internes) === */
.hero-page {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-page .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 31, 21, 0.85);
}

.hero-page .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
}

.hero-page h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.hero-page .hero-breadcrumb {
  color: var(--sable);
  font-size: 0.9rem;
}

.hero-page .hero-breadcrumb a {
  color: var(--accent);
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(193, 127, 62, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(193, 127, 62, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

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

.btn-outline:hover {
  background: var(--vert-mousse);
  color: #fff;
}

/* === Sections === */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--texte-clair);
  font-size: 1.05rem;
}

.bg-creme {
  background: var(--creme);
}

.bg-vert {
  background: var(--vert-foret);
  color: var(--creme);
}

.bg-vert h2, .bg-vert h3 {
  color: #fff;
}

.bg-vert p {
  color: var(--sable);
}

/* === Services Cards === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--ombre);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--vert-mousse), var(--accent));
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--ombre-forte);
}

.service-card .service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--vert-foret), var(--vert-mousse));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--texte-clair);
  font-size: 0.95rem;
}

/* === About / Feature Section === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--ombre-forte);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 1rem;
  border-radius: 2px;
}

.about-text p {
  color: var(--texte-clair);
  margin-bottom: 1.2rem;
}

/* === Stats / Chiffres === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

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

.stat-number {
  font-family: var(--font-titre);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--sable);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* === Engagement Section === */
.engagement-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.engagement-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.engagement-item .eng-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.engagement-item h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.engagement-item p {
  font-size: 0.93rem;
  line-height: 1.6;
}

/* === Témoignages === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px var(--ombre);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  font-family: var(--font-titre);
  color: var(--vert-clair);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: var(--texte-clair);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vert-mousse), var(--vert-clair));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author .author-info strong {
  display: block;
  color: var(--vert-foret);
  font-size: 0.95rem;
}

.testimonial-author .author-info span {
  color: var(--texte-clair);
  font-size: 0.8rem;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* === Image Section / Feature Box === */
.feature-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.feature-box .feature-overlay {
  background: linear-gradient(to top, rgba(13,31,21,0.9) 0%, transparent 100%);
  padding: 3rem 2rem 2rem;
  width: 100%;
}

.feature-box h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: var(--sable);
  font-size: 0.95rem;
}

/* === Blog Cards === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--ombre);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--ombre-forte);
}

.blog-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-card-image .blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-body .blog-date {
  color: var(--texte-clair);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-body h3 a {
  color: var(--vert-foret);
}

.blog-card-body h3 a:hover {
  color: var(--accent);
}

.blog-card-body p {
  color: var(--texte-clair);
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-card-body .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.blog-card-body .blog-read-more:hover {
  gap: 0.8rem;
}

/* === Blog Article Page === */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.article-content .article-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--texte-clair);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sable);
}

.article-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.6rem;
}

.article-content h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.3rem;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-content ul, .article-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-content li {
  list-style: disc;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--texte-clair);
}

.article-content ol li {
  list-style: decimal;
}

.article-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--creme);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--texte-clair);
}

.article-content .article-image {
  margin: 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--ombre);
}

.article-content .article-image img {
  width: 100%;
  height: auto;
}

.article-content .article-image figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--texte-clair);
  text-align: center;
  background: var(--creme);
}

.article-sidebar {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}

.article-sidebar h4 {
  margin-bottom: 1rem;
}

.article-sidebar ul li {
  list-style: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sable);
}

.article-sidebar ul li a {
  font-size: 0.95rem;
}

/* === Contact Page === */
.contact-section {
  padding: 4rem 0;
}

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

.contact-info {
  padding: 2rem 0;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 1rem;
}

.contact-info p {
  color: var(--texte-clair);
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail .contact-icon {
  width: 50px;
  height: 50px;
  background: var(--vert-foret);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  color: var(--vert-foret);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-detail p {
  color: var(--texte-clair);
  font-size: 0.9rem;
  margin: 0;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--ombre);
}

/* === Zone d'intervention === */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.zone-item {
  background: rgba(255,255,255,0.05);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: var(--sable);
  font-weight: 500;
  transition: all var(--transition);
}

.zone-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  color: #fff;
}

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--vert-foret) 0%, var(--vert-mousse) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--sable);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* === Footer === */
.site-footer {
  background: var(--noir-foret);
  color: var(--sable);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-titre);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--sable);
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--sable);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-col .footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(212, 197, 169, 0.5);
}

.footer-bottom a {
  color: rgba(212, 197, 169, 0.5);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* === Plan du Site === */
.sitemap-list {
  column-count: 2;
  column-gap: 3rem;
  padding: 2rem 0;
}

.sitemap-list h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  break-after: avoid;
}

.sitemap-list ul {
  margin-bottom: 2rem;
  break-inside: avoid;
}

.sitemap-list ul li {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.sitemap-list ul li a {
  font-size: 0.95rem;
}

/* === 404 === */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.page-404 h1 {
  font-size: clamp(4rem, 15vw, 10rem);
  color: var(--vert-clair);
  opacity: 0.3;
}

.page-404 h2 {
  margin-bottom: 1rem;
}

.page-404 p {
  color: var(--texte-clair);
  margin-bottom: 2rem;
}

/* === Responsive === */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--noir-foret);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

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

  .about-image {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .sitemap-list {
    column-count: 1;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .engagement-list {
    grid-template-columns: 1fr;
  }
}

/* === Leafy decoration (subtle) === */
.leaf-decoration {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  font-size: 15rem;
  z-index: 0;
}

/* === Accessibility === */
@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-left, .fade-in-right, .scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Print */
@media print {
  .nav-top, .site-footer, .cta-banner {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
