/* ============================================
   INFINI PAYSAGE - Mobile-First Base Styles
   Premium Landscaping Website
   Colors from logo: greens #1a5c28 -> #4CAF50
   Theme: Light
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --green-dark: #1a5c28;
  --green-primary: #2d7a3a;
  --green-medium: #3a9a4a;
  --green-light: #4CAF50;
  --green-pale: #e8f5e9;
  --green-subtle: #f1f8f2;
  --white: #ffffff;
  --off-white: #f8faf8;
  --gray-50: #f5f7f5;
  --gray-100: #e8ebe8;
  --gray-200: #d0d4d0;
  --gray-300: #a8afa8;
  --gray-400: #777e77;
  --gray-500: #555b55;
  --gray-600: #3a3f3a;
  --gray-700: #2a2e2a;
  --gray-800: #1a1d1a;
  --text-primary: #1a1d1a;
  --text-secondary: #555b55;
  --text-light: #777e77;
  --shadow-sm: 0 1px 3px rgba(26,92,40,0.06);
  --shadow-md: 0 4px 16px rgba(26,92,40,0.08);
  --shadow-lg: 0 8px 32px rgba(26,92,40,0.12);
  --shadow-xl: 0 16px 48px rgba(26,92,40,0.16);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container-padding: 20px;
  --section-spacing: 64px;
  --header-height: 70px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-spacing) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .overline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
  position: relative;
  padding: 0 16px;
}

.section-header .overline::before,
.section-header .overline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--green-primary);
}

.section-header .overline::before {
  right: 100%;
}

.section-header .overline::after {
  left: 100%;
}

.section-header h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border: 2px solid var(--green-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,92,40,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}

.btn-secondary:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--white);
  font-weight: 700;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.9rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
  height: var(--header-height);
}

.site-header.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-dark);
  line-height: 1.1;
}

.logo-text span {
  color: var(--green-light);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  padding: 100px 32px 40px;
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
  z-index: 999;
}

.nav-menu.open {
  right: 0;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green-primary);
}

.nav-cta-mobile {
  margin-top: auto;
  padding-top: 24px;
}

.nav-cta-mobile .btn {
  width: 100%;
  text-align: center;
}

.nav-phone-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 0.05em;
}

/* Desktop nav items hidden on mobile */
.nav-desktop {
  display: none;
}

.header-cta {
  display: none;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  background: var(--gray-800);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 var(--container-padding) 48px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  margin-bottom: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: #fbbf24;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero h1 .accent {
  color: var(--green-light);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-actions .btn {
  text-align: center;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 32px 24px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-primary);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 12px;
}

.service-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* --- About Preview --- */
.about-preview {
  background: var(--green-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

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

.about-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--green-primary);
  color: var(--white);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text .overline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.about-value svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* --- Réalisations / Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,92,40,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

/* --- Reviews / Avis --- */
.reviews-section {
  background: var(--gray-50);
}

.reviews-header-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}

.reviews-big-score {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1;
}

.reviews-stars {
  display: flex;
  gap: 2px;
  margin: 8px 0;
}

.reviews-stars svg {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.review-card {
  background: var(--white);
  padding: 28px 24px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-primary);
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #fbbf24;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-source svg {
  width: 14px;
  height: 14px;
}

/* --- Zone intervention --- */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.zone-map {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.zone-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

.zone-cities h3 {
  margin-bottom: 16px;
}

.cities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cities-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.cities-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-primary);
  flex-shrink: 0;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item summary h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.5;
}

.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --- Comparison Table --- */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
}

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

.comparison-table caption {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  color: var(--text-primary);
  background: var(--green-subtle);
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  background: var(--gray-50);
  border-bottom: 2px solid var(--green-primary);
}

.comparison-table tbody td,
.comparison-table tbody th {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
}

.comparison-table tbody th {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.comparison-table tbody tr:last-child td,
.comparison-table tbody tr:last-child th {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--green-subtle);
}

/* --- Date Update Badge --- */
.page-last-updated {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 8px 0 0;
}

.page-last-updated time {
  font-weight: 500;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-medium) 100%);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 60%);
  animation: ctaShimmer 8s ease-in-out infinite alternate;
}

@keyframes ctaShimmer {
  0% { transform: translate(-20%, -20%); }
  100% { transform: translate(20%, 20%); }
}

.cta-banner h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 32px 24px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 0;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,122,58,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--green-subtle);
  border-left: 3px solid var(--green-primary);
}

.contact-info-card svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-primary);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-card h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--green-dark);
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--green-primary);
  font-weight: 500;
}

/* --- Footer --- */
.site-footer {
  background: var(--gray-800);
  color: var(--white);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo-text {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-brand .logo-text span {
  color: var(--green-light);
}

.footer-brand p {
  color: var(--gray-300);
  font-size: 0.85rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray-300);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--green-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--gray-300);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--green-light);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: var(--gray-300);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-credit {
  font-size: 0.7rem;
  color: var(--gray-300);
  margin: 0;
  letter-spacing: 0.05em;
}

.footer-credit a {
  color: var(--green-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.footer-credit a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-credit strong {
  font-weight: 600;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--green-light);
}

/* --- Legal Page Premium Design --- */
.legal-layout {
  max-width: 900px;
  margin: 0 auto;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.legal-toc-title {
  width: 100%;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.legal-toc-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--gray-50);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.legal-toc-link:hover {
  color: var(--green-primary);
  background: var(--green-pale);
  border-color: var(--green-light);
}

.legal-toc-link--highlight {
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 600;
  border-color: var(--green-light);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.legal-card:hover {
  border-color: var(--green-pale);
  box-shadow: var(--shadow-md);
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--green-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.legal-card:hover::before {
  opacity: 1;
}

.legal-card--featured {
  border-color: var(--green-light);
  background: linear-gradient(135deg, var(--white) 0%, var(--green-subtle) 100%);
  box-shadow: var(--shadow-md);
}

.legal-card--featured::before {
  opacity: 1;
  width: 4px;
  background: linear-gradient(180deg, var(--green-light), var(--green-dark));
}

.legal-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.legal-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-primary);
}

.legal-card-content {
  flex: 1;
  min-width: 0;
}

.legal-card-content h2 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.legal-card-content h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--green-dark);
}

.legal-card-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-card-content p:last-child {
  margin-bottom: 0;
}

.legal-info-grid {
  display: grid;
  gap: 12px;
}

.legal-info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: 8px;
}

.legal-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.legal-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.legal-value a {
  color: var(--green-primary);
  font-weight: 600;
}

.legal-subsection {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.legal-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}

.legal-data-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.legal-data-item svg {
  flex-shrink: 0;
  stroke: var(--green-primary);
}

.legal-rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.legal-right-badge {
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--green-light);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
}

.legal-cookie-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.legal-cookie-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

.legal-cookie-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legal-cookie-badge--no {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.legal-cookie-badge--no::before {
  background: #ef4444;
}

.legal-cookie-badge--yes {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-light);
}

.legal-cookie-badge--yes::before {
  background: var(--green-primary);
}

.legal-update {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

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

  .legal-card {
    padding: 32px 28px;
  }
}

/* --- Sticky CTA Mobile --- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--green-primary);
  padding: 0;
  display: flex;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition-fast);
}

.mobile-cta-bar a:first-child {
  border-right: 1px solid rgba(255,255,255,0.15);
}

.mobile-cta-bar a:hover {
  background: var(--green-dark);
}

.mobile-cta-bar svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Add padding bottom for sticky bar */
body {
  padding-bottom: 56px;
}

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

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2001;
}

/* --- Page Header (internal pages) --- */
.page-header {
  padding: 120px 0 48px;
  background: linear-gradient(135deg, var(--green-subtle) 0%, var(--white) 100%);
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}

.page-header .overline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--green-primary);
}

.breadcrumb span {
  color: var(--gray-300);
}

/* --- Service Detail Cards (services page) --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-detail-content p {
  margin-bottom: 16px;
}

.service-detail-content ul {
  margin-bottom: 20px;
}

.service-detail-content ul li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-detail-content ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  flex-shrink: 0;
  transform: rotate(45deg);
  margin-top: 4px;
}

/* --- Gallery Filters --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.gallery-filter-btn {
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--gray-200);
  border-radius: 0;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}

/* --- About Page specifics --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.about-story-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.value-card {
  padding: 28px 24px;
  background: var(--green-subtle);
  border-left: 3px solid var(--green-primary);
  transition: all var(--transition-base);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 28px;
  margin-top: 32px;
}

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

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--green-primary);
  border-radius: 50%;
}

.timeline-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* --- Contact Page specifics --- */
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.contact-map {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

.horaires-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 0.85rem;
  background: var(--gray-50);
}

.horaire-row:nth-child(odd) {
  background: var(--white);
}

.horaire-row .day {
  font-weight: 600;
  color: var(--text-primary);
}

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

.horaire-row.today {
  background: var(--green-pale);
  font-weight: 600;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-green { color: var(--green-primary); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* --- Noscript fallback --- */
noscript .reveal,
noscript .reveal-left,
noscript .reveal-right {
  opacity: 1;
  transform: none;
}

/* --- Print --- */
@media print {
  .site-header,
  .mobile-cta-bar,
  .nav-toggle {
    display: none !important;
  }
  body {
    padding: 0;
  }
}

/* --- Tablet adjustments (480-768) --- */
@media (min-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .hero-actions {
    flex-direction: row;
  }

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

@media (min-width: 768px) {
  :root {
    --container-padding: 40px;
    --section-spacing: 80px;
  }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-image img {
    height: 400px;
  }

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

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .contact-page-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }

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

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

  .service-detail {
    grid-template-columns: 2fr 3fr;
    gap: 40px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}
