/* ========================================
   Executive Organic Boutique — Eva Rodriguez
   Design System
   ======================================== */

/* CSS Custom Properties */
:root {
  /* Colors */
  --deep-forest-green: #1B2B24;
  --champagne-cream: #F2EFE9;
  --muted-gold: #C5A368;
  --charcoal-text: #2D2D2D;
  --soft-taupe: #E5E1D8;
  --white: #FFFFFF;
  --navy-blue: #1C2B4A;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 64px;
  --spacing-2xl: 96px;
  --spacing-3xl: 128px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;

  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.3px;
  color: var(--charcoal-text);
  background-color: var(--champagne-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal-text);
}

.overline {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: var(--spacing-md);
  text-wrap: balance;
}

.section-intro {
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.8;
  max-width: 700px;
  margin-bottom: var(--spacing-lg);
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--muted-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background-color: var(--deep-forest-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #243a2e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(27, 43, 36, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--charcoal-text);
  border: 1px solid var(--charcoal-text);
}

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

.btn-full {
  width: 100%;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--champagne-cream);
  border-bottom: 1px solid var(--soft-taupe);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--deep-forest-green);
  text-decoration: none;
}

.logo:hover {
  color: var(--deep-forest-green);
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--spacing-sm);
  list-style: none;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--charcoal-text);
  padding: var(--spacing-xs) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--muted-gold);
  transition: width var(--transition-normal);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.language-selector {
  display: flex;
  gap: 4px;
}

.lang-btn {
  padding: 5px 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--charcoal-text);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.lang-btn:hover {
  border-color: var(--charcoal-text);
  color: var(--charcoal-text);
}

.lang-btn.active {
  background-color: var(--deep-forest-green);
  color: var(--white);
  border-color: var(--deep-forest-green);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--charcoal-text);
  transition: all var(--transition-normal);
}

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

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

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

/* Mobile Navigation */
.nav.mobile-open {
  display: block;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--champagne-cream);
  padding: var(--spacing-lg);
  z-index: 999;
  overflow-y: auto;
}

.nav.mobile-open .nav-list {
  flex-direction: column;
  gap: 0;
}

.nav.mobile-open .nav-link {
  font-size: 17px;
  display: block;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--soft-taupe);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  padding-top: calc(100px + var(--spacing-2xl));
  padding-bottom: var(--spacing-2xl);
  background: linear-gradient(to bottom, #faf8f5 0%, var(--champagne-cream) 50%, #f7f4ee 100%);
  position: relative;
}

.hero-decorative-line {
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--muted-gold) 15%, var(--muted-gold) 85%, transparent 100%);
  width: 100%;
}

.hero-line-top {
  opacity: 0.4;
  margin-bottom: var(--spacing-xl);
}

.hero-line-bottom {
  opacity: 0.4;
  margin-top: var(--spacing-xl);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 700px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--deep-forest-green);
  text-balance;
}

.hero-text {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--charcoal-text);
  max-width: 600px;
}

.hero-quote {
  border-left: 3px solid var(--muted-gold);
  padding-left: var(--spacing-lg);
  margin: var(--spacing-md) 0;
}

.hero-quote p {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.6;
  color: var(--charcoal-text);
  font-style: italic;
}

.hero-credibility {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) 0;
}

.credibility-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.credibility-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--muted-gold);
}

.credibility-label {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--charcoal-text);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(100px + var(--spacing-xl));
    padding-bottom: var(--spacing-xl);
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: 0.3px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-quote p {
    font-size: 18px;
  }

  .hero-credibility {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .hero-line-top,
  .hero-line-bottom {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
}


/* ========================================
   Probleme Section
   ======================================== */
.probleme {
  padding: var(--spacing-2xl) 0;
  background: 
    linear-gradient(135deg, rgba(27, 43, 36, 0.95) 0%, rgba(26, 58, 46, 0.95) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(197, 163, 104, 0.03) 2px, rgba(197, 163, 104, 0.03) 4px);
  color: var(--white);
  position: relative;
}

.probleme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(197, 163, 104, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.probleme > .container {
  position: relative;
  z-index: 1;
}

.probleme .overline {
  color: var(--muted-gold);
}

.probleme .section-title {
  color: var(--white);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.3px;
  margin-bottom: var(--spacing-xl);
  text-balance;
}

.probleme .section-intro {
  color: rgba(255, 255, 255, 0.98);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: var(--spacing-2xl);
  opacity: 1 !important;
}

.probleme-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.probleme-card {
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  position: relative;
  transition: all var(--transition-normal);
}

.probleme-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 163, 104, 0.4);
  transform: translateY(-2px);
}

.probleme-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--muted-gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.probleme-title {
  font-size: 20px;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.probleme-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

/* ========================================
   About Section
   ======================================== */
.about {
  padding: var(--spacing-2xl) 0;
  background-color: var(--champagne-cream);
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.about-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  box-shadow: 8px 8px 0 var(--muted-gold);
}

.about-content {
  max-width: 640px;
}

.about-quote {
  border-left: 3px solid var(--muted-gold);
  padding: var(--spacing-sm) var(--spacing-md);
  margin-bottom: var(--spacing-md);
  background-color: rgba(197, 163, 104, 0.06);
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: var(--deep-forest-green);
}

.about-text {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: var(--spacing-md);
  opacity: 0.85;
}

/* Pilliers */
.pilliers {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--soft-taupe);
}

.pilliers-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: var(--spacing-md);
}

.pillier-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--soft-taupe);
}

.pillier-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pillier-icon {
  width: 32px;
  height: 32px;
  color: var(--muted-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pillier-icon svg {
  width: 100%;
  height: 100%;
}

.pillier-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--deep-forest-green);
}

.pillier-text {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
}

/* ========================================
   Sections
   ======================================== */
section {
  padding: 128px 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: var(--deep-forest-green);
  margin-bottom: 48px;
  text-balance;
}

.section-intro {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--charcoal-text);
  max-width: 600px;
  margin-bottom: 48px;
}

.services .section-intro {
  max-width: 700px;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .section-intro {
    margin-bottom: 32px;
  }
}

/* Service Featured (01) */
.service-featured {
  background-color: var(--deep-forest-green);
  color: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-xl);
  overflow: hidden;
}

.service-featured-header {
  padding: var(--spacing-lg) var(--spacing-lg) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--spacing-md);
}

.service-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-gold);
  border: 1px solid var(--muted-gold);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-sm);
}

.service-featured-title {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--white);
  margin-bottom: 0;
}

.service-featured-body {
  padding: var(--spacing-lg);
}

.service-featured-text {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.85;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.service-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted-gold);
  margin-bottom: var(--spacing-md);
  display: block;
}

.service-includes {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.service-includes li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  opacity: 0.8;
  padding-left: var(--spacing-sm);
  position: relative;
}

.service-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted-gold);
}

/* Services Grid (02–05) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.service-card {
  padding: var(--spacing-lg);
  background-color: var(--soft-taupe);
  border-radius: var(--radius-md);
  position: relative;
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card--premium {
  background-color: var(--champagne-cream);
  border: 2px solid var(--muted-gold);
}

.service-card--first-step {
  background-color: var(--champagne-cream);
  border: 1px solid var(--soft-taupe);
  grid-column: 1 / -1;
}

.service-number {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--muted-gold);
  flex-shrink: 0;
}

.service-number-text {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--muted-gold);
  opacity: 0.6;
  line-height: 1;
}

.service-tag-small {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: var(--spacing-sm);
}

.service-title {
  font-size: 22px;
  margin-bottom: var(--spacing-sm);
}

.service-text {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: var(--spacing-sm);
}

.service-includes-small {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.service-includes-small li {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding-left: var(--spacing-sm);
  position: relative;
  opacity: 0.8;
}

.service-includes-small li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted-gold);
}

.service-note {
  font-size: 13px;
  font-style: italic;
  color: var(--deep-forest-green);
  margin-bottom: var(--spacing-md);
  opacity: 0.8;
}

.service-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--deep-forest-green);
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--muted-gold);
  transition: color var(--transition-fast);
}

.service-link:hover {
  color: var(--muted-gold);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
  padding: 128px 0;
  background-color: var(--champagne-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

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

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

.testimonial-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--muted-gold);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(27, 43, 36, 0.12);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  color: var(--charcoal-text);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--deep-forest-green);
}

.testimonial-title {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted-gold);
  opacity: 0.8;
}


/* ========================================
   Section Separators
   ======================================== */
.section-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 64px 0;
  opacity: 0.3;
}

.section-separator::before,
.section-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--muted-gold), transparent);
}

.section-separator span {
  margin: 0 24px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-gold);
}



.process {
  padding: var(--spacing-2xl) 0;
  background-color: var(--champagne-cream);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.process-step {
  padding: var(--spacing-lg);
  background-color: var(--white);
  border-radius: var(--radius-md);
}

.process-connector {
  display: none;
}

.step-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--muted-gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.step-title {
  font-size: 20px;
  color: var(--charcoal-text);
  margin-bottom: var(--spacing-sm);
}

.step-text {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.8;
}

/* ========================================
   Pour Qui Section
   ======================================== */
.pour-qui {
  padding: var(--spacing-2xl) 0;
  background-color: var(--soft-taupe);
}

.pour-qui-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  position: relative;
}

@media (min-width: 768px) {
  .pour-qui-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .pour-qui-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, var(--muted-gold) 10%, var(--muted-gold) 90%, transparent 100%);
    opacity: 0.4;
    transform: translateX(-0.5px);
  }

  .pour-qui-col {
    position: relative;
  }

  .pour-qui-oui {
    padding-right: var(--spacing-lg);
  }

  .pour-qui-non {
    padding-left: var(--spacing-lg);
  }
}

.pour-qui-col {
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
}

.pour-qui-oui {
  background-color: var(--white);
}

.pour-qui-non {
  background-color: var(--champagne-cream);
}

.pour-qui-heading {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--soft-taupe);
}

.pour-qui-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.pour-qui-list li {
  display: flex;
  gap: var(--spacing-sm);
  font-size: 15px;
  line-height: 1.6;
}

.check-icon {
  color: var(--deep-forest-green);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

.cross-icon {
  color: var(--charcoal-text);
  opacity: 0.4;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
  padding: var(--spacing-2xl) 0;
  background-color: var(--white);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-info {
  max-width: 520px;
}

.contact-info .section-title {
  font-size: clamp(24px, 3.5vw, 36px);
}

.contact-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  opacity: 0.85;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 15px;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--muted-gold);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--charcoal-text);
}

.contact-item a:hover {
  color: var(--deep-forest-green);
}

.contact-note {
  font-size: 13px;
  font-style: italic;
  opacity: 0.7;
}

/* Contact Form */
.contact-form {
  width: 100%;
  max-width: 520px;
  background-color: var(--champagne-cream);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
  color: var(--charcoal-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--soft-taupe);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--charcoal-text);
  opacity: 0.4;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--deep-forest-green);
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: var(--deep-forest-green);
  color: var(--white);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(197, 163, 104, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .logo {
  color: var(--white);
  font-size: 20px;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  position: relative;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--muted-gold);
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: var(--muted-gold);
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-languages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-languages span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-gold);
}

.footer-languages a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-languages a:hover {
  color: var(--muted-gold);
}

.footer-languages a.active {
  color: var(--muted-gold);
  font-weight: 500;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--white);
  font-size: 20px;
}

.footer-brand .logo:hover {
  color: var(--white);
}

.footer-logo-img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 13px;
  opacity: 0.6;
  margin-top: var(--spacing-xs);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs) var(--spacing-md);
}

.footer-nav a {
  font-size: 13px;
  color: var(--white);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-languages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-xs) var(--spacing-sm);
}

.footer-languages span {
  font-size: 13px;
  opacity: 0.6;
}

.footer-languages a {
  font-size: 13px;
  color: var(--white);
  opacity: 0.65;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.footer-languages a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-languages a.active {
  background-color: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.footer-bottom {
  padding-top: var(--spacing-lg);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.5;
}

/* ========================================
   Responsive — Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
  .nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

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

  .hero-credibility {
    gap: var(--spacing-xl);
  }

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

  .about-container {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-xl);
  }

  .about-image {
    flex: 0 0 38%;
    justify-content: flex-start;
  }

  .about-image-wrapper {
    max-width: 100%;
  }

  .about-content {
    flex: 1;
  }

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

  .service-card--first-step {
    grid-column: 1 / -1;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
  }

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

  .contact-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-info {
    flex: 1;
  }

  .contact-form {
    flex: 1;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* ========================================
   Responsive — Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-lg);
  }

  .hero-container {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-2xl);
  }

  .hero-content {
    flex: 1;
    padding-top: var(--spacing-md);
  }

  .hero-image {
    flex: 0 0 42%;
    justify-content: flex-end;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .hero-photo {
    aspect-ratio: auto;
    height: 580px;
  }
}

/* ========================================
   Responsive — Large Desktop (1280px+)
   ======================================== */
@media (min-width: 1280px) {
  .container {
    padding: 0 var(--spacing-xl);
  }

  .header-container {
    height: 90px;
  }

  .hero {
    padding-top: calc(90px + var(--spacing-3xl));
  }

  .nav-list {
    gap: var(--spacing-md);
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Form Success Message */
.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  min-height: 320px;
}

.form-success-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 480px;
  width: 100%;
}

.form-success-line {
  width: 48px;
  height: 1px;
  background-color: var(--color-accent);
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.form-success-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.form-success-signature {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-accent);
  font-style: italic;
  margin: 0;
}

.form-success-btn {
  margin-top: 0.5rem;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
