/* ============================================
   VERT ÉLÉGANCE - Design System Premium
   Paysagiste Luxembourg
   ============================================ */

/* CSS Variables - Palette Nature Luxe */
:root {
  /* Colors - Nature Luxe */
  --color-primary: #1a3a2f;      /* Vert profond */
  --color-primary-dark: #0f241c; /* Vert très foncé */
  --color-primary-light: #2d5a4a;/* Vert clair */
  --color-accent: #c9a962;       /* Or bronze */
  --color-accent-light: #d4b978; /* Or clair */
  --color-cream: #faf8f3;        /* Crème */
  --color-cream-dark: #f2efe8;   /* Crème foncé */
  --color-text: #1c1917;         /* Texte principal */
  --color-text-light: #57534e;   /* Texte secondaire */
  --color-text-muted: #78716c;   /* Texte tertiaire */
  --color-white: #ffffff;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  
  /* Spacing - 4px base */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 1rem;      /* 16px */
  --space-4: 1.5rem;    /* 24px */
  --space-5: 2rem;      /* 32px */
  --space-6: 3rem;      /* 48px */
  --space-7: 4rem;      /* 64px */
  --space-8: 6rem;      /* 96px */
  --space-9: 8rem;      /* 128px */
  --space-10: 12rem;    /* 192px */
  
  /* Container */
  --container-max: 1400px;
  --container-padding: clamp(1.5rem, 5vw, 4rem);
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-accent: 0 20px 40px -10px rgba(201, 169, 98, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-smooth);
}

ul {
  list-style: none;
}

/* Selection */
::selection {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.2s, height 0.2s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    opacity: 1;
  }
  
  body:hover .cursor-ring {
    opacity: 1;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-3) 0;
  transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background-color: rgba(250, 248, 243, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-2) 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  transition: color 0.3s;
}

.nav.scrolled .logo {
  color: var(--color-primary);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.logo-mark svg {
  color: var(--color-accent);
  transition: color 0.3s;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-5);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}

.nav.scrolled .nav-link {
  color: var(--color-text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--color-white);
}

.nav.scrolled .nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
}

.btn-primary:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav.scrolled .btn-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.nav.scrolled .btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-large {
  padding: var(--space-3) var(--space-5);
  font-size: 1rem;
}

.nav .btn-primary {
  display: none;
}

/* Menu Toggle */
.menu-toggle {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 102;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  margin: 6px auto;
  transition: all 0.3s var(--ease-smooth);
}

.nav.scrolled .menu-toggle span {
  background-color: var(--color-primary);
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: var(--color-primary);
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: var(--color-primary);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-cream);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: color 0.3s;
}

.mobile-link:hover {
  color: var(--color-accent);
}

.mobile-cta {
  margin-top: var(--space-4);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 47, 0.85) 0%,
    rgba(15, 36, 28, 0.6) 50%,
    rgba(26, 58, 47, 0.4) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--space-10) + 80px) var(--container-padding) var(--space-8);
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-4);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-expo) 0.3s forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s var(--ease-expo) forwards;
}

.hero-title .line:first-child {
  animation-delay: 0.5s;
}

.hero-title .line:nth-child(2) {
  animation-delay: 0.7s;
}

.hero-title .accent {
  color: var(--color-accent);
  font-style: italic;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-expo) 0.9s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-expo) 1.1s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-expo) 1.3s forwards;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: var(--space-1);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: var(--color-accent);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(300%);
    opacity: 0;
  }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-header {
  margin-bottom: var(--space-7);
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 600px;
}

.section-header.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Reveal Animation Classes */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--space-10) 0;
  background-color: var(--color-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.service-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card.featured {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.7);
}

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 47, 0.4), transparent);
}

.service-content {
  padding: var(--space-4);
  position: relative;
}

.service-badge {
  position: absolute;
  top: -12px;
  right: var(--space-4);
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.6), rgba(242, 239, 232, 0) 60%),
    var(--color-cream-dark);
  border: 1px solid rgba(26, 58, 47, 0.08);
  border-radius: 16px;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  position: relative;
  transition: transform 0.4s var(--ease-smooth), color 0.4s var(--ease-smooth);
}

.service-card:hover .service-icon {
  transform: translateY(-2px) rotate(-3deg);
  color: var(--color-accent);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 98, 0.35);
  color: var(--color-accent);
}

.service-card.featured:hover .service-icon {
  color: var(--color-white);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--color-primary);
}

.service-card.featured .service-title {
  color: var(--color-white);
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: gap 0.3s;
}

.service-card.featured .service-link {
  color: var(--color-accent);
}

.service-link:hover {
  gap: var(--space-3);
}

.service-link svg {
  transition: transform 0.3s;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
  padding: var(--space-10) 0;
  background-color: var(--color-cream-dark);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}

.why-us-content {
  max-width: 560px;
}

.features-list {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-accent);
  border-radius: 12px;
}

.feature-content h4 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.feature-content p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.why-us-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  background-color: var(--color-white);
  padding: var(--space-3) var(--space-4);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.floating-card {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-4);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-icon {
  color: var(--color-accent);
  margin-bottom: var(--space-2);
  line-height: 0;
}

.floating-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-accent);
}

.floating-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: var(--space-10) 0;
  background-color: var(--color-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.testimonial-card {
  background-color: var(--color-white);
  padding: var(--space-5);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-5);
  color: var(--color-text);
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.testimonial-card.featured .author-name {
  color: var(--color-white);
}

.author-location {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.testimonial-card.featured .author-location {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  position: relative;
  padding: var(--space-10) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 58, 47, 0.95) 0%,
    rgba(26, 58, 47, 0.8) 50%,
    rgba(26, 58, 47, 0.6) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.cta-info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.info-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

.info-item svg {
  color: var(--color-accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: var(--space-9) 0 var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.footer-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: var(--space-4);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.social-link:hover {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a,
.footer-contact li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-contact svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--space-4);
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--color-white);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card.featured {
    grid-column: span 2;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-card.featured {
    grid-column: span 2;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  
  .nav .btn-primary {
    display: inline-flex;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .mobile-menu {
    display: none !important;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-card.featured {
    grid-column: span 1;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonial-card.featured {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   INNER PAGES : page-hero, breadcrumb, layouts
   ============================================ */

/* Nav CTA (inner pages keep the gold button visible) */
.nav-cta {
  flex-shrink: 0;
}

/* Section CTA (centered "voir plus" under a grid) */
.section-cta {
  margin-top: var(--space-7);
  text-align: center;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn-outline-dark:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Service card image as full link */
.service-image-link {
  display: block;
  color: inherit;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-4);
}
.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--color-accent); }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--space-10) + 60px) 0 var(--space-8);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 36, 28, 0.88) 0%, rgba(26, 58, 47, 0.7) 55%, rgba(15, 36, 28, 0.5) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  max-width: 820px;
}
.page-hero h1 .accent { color: var(--color-accent); font-style: italic; }
.page-hero p.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  line-height: 1.6;
}

/* Generic section spacing for inner pages */
.section { padding: var(--space-9) 0; }
.section.alt { background-color: var(--color-cream-dark); }
.section.tint { background-color: var(--color-primary); color: var(--color-white); }
.section.tint .section-tag { color: var(--color-accent); }
.section.tint .section-title { color: var(--color-white); }
.section.tint .section-subtitle { color: rgba(255, 255, 255, 0.75); }

/* Long-form prose */
.prose { max-width: 760px; }
.prose p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: var(--space-6) 0 var(--space-3);
}
.prose h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: var(--space-5) 0 var(--space-2);
}
.prose ul { list-style: none; margin: var(--space-3) 0; }
.prose ul li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
  color: var(--color-text-light);
  line-height: 1.7;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='8' stroke='%23c9a962' stroke-width='1.4'/%3E%3Cpath d='M6.5 10l2.5 2.5L14 7.5' stroke='%23c9a962' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Two-column layout */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
.split.media-right .split-media { order: 2; }

/* Service detail : feature checklist */
.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}
.check-list .item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  background-color: var(--color-white);
  border: 1px solid rgba(26, 58, 47, 0.08);
  border-radius: 14px;
  padding: var(--space-3) var(--space-4);
}
.section.alt .check-list .item { background-color: var(--color-cream); }
.check-list .item .ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-accent);
  border-radius: 10px;
}
.check-list .item h4 { font-size: 1rem; font-weight: 600; color: var(--color-primary); margin-bottom: 2px; }
.check-list .item p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.5; }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: var(--space-7);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: -4px;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
}
.step h4 { font-size: 1.125rem; font-weight: 600; color: var(--color-white); margin-bottom: var(--space-1); }
.step p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; line-height: 1.6; }

/* Generic media frame */
.media-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.media-frame.tall img { aspect-ratio: 4/5; }

/* Gallery (réalisations) */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.8s var(--ease-smooth); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-6) var(--space-4) var(--space-3);
  background: linear-gradient(to top, rgba(15,36,28,0.9), transparent);
  color: var(--color-white);
}
.gallery-cap .t { font-family: var(--font-display); font-size: 1.25rem; }
.gallery-cap .s { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* Service hub : intro card row */
.link-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.link-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background-color: var(--color-white);
  border: 1px solid rgba(26, 58, 47, 0.08);
  border-radius: 16px;
  padding: var(--space-4);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}
.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.link-card .ico {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--color-cream-dark);
  border-radius: 14px;
  color: var(--color-primary);
}
.link-card .txt { flex: 1; }
.link-card .txt h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-primary); margin-bottom: 2px; }
.link-card .txt p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.5; }
.link-card .go { color: var(--color-accent); flex-shrink: 0; }

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  max-width: 100%;
  min-width: 0;
}
.contact-grid > * { width: 100%; max-width: 100%; }
.contact-info-card {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 24px;
  padding: var(--space-6);
  box-sizing: border-box;
}
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: var(--space-4); }
.contact-info-card .ci-row {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-card .ci-row:last-child { border-bottom: none; }
.contact-info-card .ci-row .ico { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.contact-info-card .ci-row .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.contact-info-card .ci-row .val { font-size: 1rem; color: var(--color-white); }
.contact-info-card .ci-row a { color: var(--color-white); }
.contact-info-card .val,
.contact-info-card a,
.legal a, .legal p,
.prose a, .prose p { overflow-wrap: anywhere; word-break: break-word; }
/* Prevent grid/flex children from forcing overflow */
.contact-grid > *, .split > *, .check-list > *, .steps > *,
.gallery-item, .link-card, .features-list > *, .why-us-grid > *,
.services-grid > *, .testimonials-grid > *, .form-row > * { min-width: 0; }
.feature-content, .check-list .item > div, .ci-row > div { min-width: 0; }

.contact-form {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-bottom: var(--space-4); }
.form-field { display: flex; flex-direction: column; gap: var(--space-1); }
.form-field label { font-size: 0.85rem; font-weight: 500; color: var(--color-primary); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: var(--space-3);
  border: 1px solid rgba(26, 58, 47, 0.15);
  border-radius: 10px;
  background-color: var(--color-cream);
  color: var(--color-text);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
  background-color: var(--color-white);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-consent { font-size: 0.8rem; color: var(--color-text-muted); line-height: 1.5; margin-top: var(--space-2); }
.form-submit { width: 100%; justify-content: center; margin-top: var(--space-3); }

/* Reusable CTA strip */
.cta-strip {
  background-color: var(--color-primary);
  border-radius: 28px;
  padding: var(--space-7) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,169,98,0.18), transparent 70%);
  top: -120px; right: -80px;
}
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: var(--color-white); line-height: 1.15; max-width: 700px; }
.cta-strip p { color: rgba(255,255,255,0.75); max-width: 560px; }
.cta-strip .actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }

/* Legal page tweaks */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); color: var(--color-primary); margin-bottom: var(--space-4); }
.legal h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-primary); margin: var(--space-6) 0 var(--space-2); }
.legal p, .legal li { color: var(--color-text-light); line-height: 1.8; }
.legal p { margin-bottom: var(--space-3); }
.legal ul { list-style: none; margin-bottom: var(--space-3); }
.legal ul li { padding-left: var(--space-4); position: relative; margin-bottom: var(--space-1); }
.legal ul li::before { content: '—'; position: absolute; left: 0; color: var(--color-accent); }

/* Responsive for inner layouts */
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.tall img { aspect-ratio: 3/4; }
  .link-cards { grid-template-columns: repeat(2, 1fr); }
  .check-list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-7); }
  .form-row.dual { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .split.media-right .split-media { order: 0; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .link-cards { grid-template-columns: repeat(3, 1fr); }
  .check-list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .cta-strip { flex-direction: row; text-align: left; justify-content: space-between; padding: var(--space-7); }
  .cta-strip .actions { flex-shrink: 0; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
