/* ===== FONTS ===== */
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-RegularItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Caveat';
  src: url('fonts/Caveat-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ===== VARIABLES ===== */
:root {
  --bg-cream: #FFFDF8;
  --bg-sand: #F3EDE4;
  --bg-services: #FAF8F5;
  --brown-primary: #662915;
  --brown-dark: #4A1E0F;
  --brown-light: #8B3D1F;
  --footer-dark: #051C2C;
  --text-dark: #1C1C1C;
  --text-muted: #555555;
  --text-light: #888888;
  --border-light: #E5E0D8;
  --white: #FFFFFF;
  --orange-badge: #C8873F;
  --green-badge: #3D7A4E;
  --blue-badge: #4A7BB5;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 15px;
}

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

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

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 400;
  line-height: 1.3;
}

.section-title {
  text-align: center;
  font-family: 'Gilroy', sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 2.1px;
  margin-bottom: 45px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.section-title .accent {
  font-family: inherit;
  color: var(--brown-primary);
  font-size: inherit;
  font-style: normal;
  letter-spacing: inherit;
  text-transform: uppercase;
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
header {
  background-color: var(--white);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

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

nav a:hover {
  color: var(--brown-primary);
}

nav a:hover::after {
  width: 100%;
}

.lang-switch {
  border: 1px solid var(--text-dark);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lang-switch:hover {
  background-color: var(--text-dark);
  color: var(--white);
}

.lang-switch::after {
  display: none;
}

.btn-cta {
  background-color: #662915 !important;
  color: var(--white) !important;
  padding: 0 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  border: none;
  transition: background-color 0.3s ease !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-cta::after {
  display: none;
}

.btn-cta:hover {
  background-color: #4A1E0F !important;
}

/* Header right section */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Bouton CTA mobile - cache sur desktop */
.btn-cta-mobile {
  display: none !important;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

.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);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 540px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide.prev {
  z-index: 1;
}

/* Single background image */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

/* Ken Burns effect */
.slide.active .slide-bg {
  animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Dark overlay on image */
.slide-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* Gradient overlay */
.slide-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  z-index: 2;
}

/* Slide transitions */
.slide {
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

/* Content animations */
.slide-content {
  position: absolute;
  bottom: 40px;
  right: 40px;
  text-align: left;
  color: var(--white);
  z-index: 2;
}

.slide-content h2 {
  font-family: 'Gilroy', sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.3s;
}

.slide.active .slide-content h2 {
  opacity: 1;
  transform: translateY(0);
}

.slide-content .slide-meta {
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.5s;
}

.slide.active .slide-content .slide-meta {
  opacity: 0.9;
  transform: translateY(0);
}

.btn-view-project {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFDF8;
  color: #662915;
  padding: 11px 18px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-view-project::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #662915;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-view-project:hover::before {
  transform: translateY(0);
}

.slide.active .btn-view-project {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.4s ease, opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s, 0.7s, 0.7s;
}

.btn-view-project:hover {
  color: #FFFDF8;
}

.btn-view-project span {
  transition: transform 0.3s ease;
}

.btn-view-project:hover span {
  transform: translateX(4px);
}

/* Navigation buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 80px;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 4px;
  z-index: 10;
}

.slider-nav:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.slider-nav:active {
  transform: scale(0.95);
}

.slider-nav svg {
  transition: transform 0.3s ease;
}

.slider-nav.prev:hover svg {
  transform: translateX(-3px);
}

.slider-nav.next:hover svg {
  transform: translateX(3px);
}

.slider-nav.prev {
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.slider-nav.next {
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #662915, #8B3D1F);
  z-index: 10;
  width: 0;
  transition: width 0.1s linear;
}

.slide.active ~ .slider-progress {
  animation: sliderProgress 6s linear forwards;
}

@keyframes sliderProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
  background-color: #051C2C;
  padding: 60px 0;
}

.why-choose-us .section-title {
  color: #FFFFFF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature h3 {
  font-family: 'Gilroy', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #FFFFFF;
  font-style: normal;
}

.feature p {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* ===== OUR PROJECTS ===== */
.our-projects {
  padding: 50px 0 0;
  background-color: #051C2C;
  overflow: hidden;
}

.our-projects .section-title {
  color: #FFFFFF;
  margin-bottom: 40px;
}

.our-projects .section-title .accent {
  color: #FFC5B2;
  text-decoration: none;
}

.projects-slider-wrapper {
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.projects-slider {
  position: relative;
  overflow: hidden;
}

.projects-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s ease;
}

.project-slide {
  flex: 0 0 25%;
  min-width: 25%;
  position: relative;
  display: block;
  overflow: hidden;
}

.project-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-slide:hover img {
  transform: scale(1.05);
}

.project-slide .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 28, 44, 0.7);
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.project-slide:hover .gallery-overlay {
  opacity: 1;
}

.projects-nav-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
}

.projects-nav {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.05);
}

.projects-nav.prev {
  left: 40px;
}

.projects-nav.next {
  right: 40px;
}

.projects-nav {
  width: 40px;
  height: 80px;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 4px;
}

.projects-nav:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.projects-nav svg {
  transition: transform 0.3s ease;
}

.projects-nav.prev:hover svg {
  transform: translateX(-3px);
}

.projects-nav.next:hover svg {
  transform: translateX(3px);
}

/* ===== WHAT WE DO ===== */
.what-we-do {
  padding: 60px 0;
  background-color: #FFFDF2;
}

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

.service-card {
  border: 1px solid rgba(102, 41, 21, 0.3);
  padding: 28px 24px;
  background: #FFFDF5;
  transition: color 0.4s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #662915;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card:hover {
  border-color: #662915;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-number {
  color: #FFFDF8;
}

.service-card:hover .service-icon {
  background-color: #FFFDF8;
}

.service-card:hover .service-icon svg {
  stroke: #662915;
}

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

.service-icon {
  width: 36px;
  height: 36px;
  background-color: #FFEBE4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s ease;
}

.service-icon svg {
  width: 16px;
  height: 16px;
  stroke: #1A1A1A;
  transition: stroke 0.4s ease;
}

.service-number {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.875rem;
  color: #1A1A1A;
  font-weight: 500;
  transition: color 0.4s ease;
}

.service-card h3 {
  font-family: 'Gilroy', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1A1A1A;
  transition: color 0.4s ease;
}

.service-card p {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6B6B6B;
  transition: color 0.4s ease;
}

/* ===== NEWS AND ARCHIVE ===== */
.news-archive {
  padding: 70px 0 80px;
  background-color: var(--white);
}

.news-archive .section-title {
  white-space: nowrap;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

/* Dropdown mobile - cache sur desktop */
.news-filters-mobile {
  display: none;
}

.news-filters {
  display: flex;
  gap: 8px;
}

.filter-btn {
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: transparent;
  border: 1px solid #1A1A1A;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1A1A1A;
}

.filter-btn:hover {
  border-color: var(--brown-primary);
  color: var(--brown-primary);
}

.filter-btn.active {
  background-color: #662915;
  border-color: #662915;
  color: var(--white);
}

.news-nav {
  display: flex;
  gap: 6px;
}

.news-nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #1A1A1A;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-nav-btn:hover:not(.disabled) {
  border-color: var(--brown-primary);
  background-color: var(--brown-primary);
  color: var(--white);
}

.news-nav-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.news-card {
  background-color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.news-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}

.news-badge.news,
.news-badge.awards,
.news-badge.press {
  background-color: #FFFDF8;
  color: #662915;
}

.news-content {
  padding: 16px;
  border: 1px solid #E4E8EF;
  border-top: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-content time {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.8rem;
  color: #6B6B6B;
  display: block;
  margin-bottom: 10px;
}

.news-content h3 {
  font-family: 'Gilroy', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #1A1A1A;
}

.read-more {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #662915;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: auto;
}

.read-more:hover {
  gap: 10px;
  color: var(--brown-dark);
}

/* ===== TESTIMONIALS - Premium Floating Cards Design ===== */
.testimonials {
  padding: 100px 0 120px;
  background-color: #F3EDE4;
  position: relative;
  overflow: hidden;
}

/* Grande guillemet décorative en arrière-plan */
.testimonials::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Caveat', cursive;
  font-size: 280px;
  color: var(--brown-primary);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

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

.testimonials .section-title {
  margin-bottom: 60px;
}

.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border: none;
  border-radius: 50%;
  color: var(--brown-primary);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 41, 21, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav.prev {
  left: 0;
}

.testimonial-nav.next {
  right: 0;
}

.testimonial-nav:hover {
  background-color: var(--brown-primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(102, 41, 21, 0.25);
}

.testimonial-nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 41, 21, 0.3), 0 4px 15px rgba(102, 41, 21, 0.1);
}

.testimonial-content {
  position: relative;
  min-height: 450px;
  width: 100%;
  max-width: 800px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 50px 60px 40px;
  text-align: center;
  border-radius: 16px;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(60px) scale(0.95);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease;
  box-shadow: 0 10px 40px rgba(102, 41, 21, 0.08);
  will-change: transform, opacity;
}

.testimonial-card.slide-out-left {
  opacity: 0;
  transform: translateX(-60px) scale(0.95);
}

.testimonial-card.slide-out-right {
  opacity: 0;
  transform: translateX(60px) scale(0.95);
}

.testimonial-card.active {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(102, 41, 21, 0.12);
}

/* Animation du contenu interne */
.testimonial-card.active h3 {
  animation: fadeSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

.testimonial-card.active p {
  animation: fadeSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.25s both;
}

.testimonial-card.active .testimonial-rating {
  animation: fadeSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}

.testimonial-card.active .testimonial-author-inline {
  animation: fadeSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.45s both;
}

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

/* Animation des étoiles en cascade */
.testimonial-card.active .testimonial-rating svg:nth-child(1) { animation: starPop 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both; }
.testimonial-card.active .testimonial-rating svg:nth-child(2) { animation: starPop 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.45s both; }
.testimonial-card.active .testimonial-rating svg:nth-child(3) { animation: starPop 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both; }
.testimonial-card.active .testimonial-rating svg:nth-child(4) { animation: starPop 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.55s both; }
.testimonial-card.active .testimonial-rating svg:nth-child(5) { animation: starPop 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both; }

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-15deg);
  }
  70% {
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* Petite guillemet dans la carte */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: 'Caveat', cursive;
  font-size: 60px;
  color: var(--brown-primary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--brown-primary);
  font-style: italic;
  text-wrap: balance;
}

.testimonial-card p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.testimonial-card p:last-of-type {
  margin-bottom: 0;
}

/* Étoiles de notation */
.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.testimonial-rating svg {
  width: 20px;
  height: 20px;
  fill: #C8873F;
}

/* Auteur inline dans la carte */
.testimonial-author-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(102, 41, 21, 0.1);
}

.testimonial-author-inline .author-avatar-small {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-primary) 0%, var(--brown-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(102, 41, 21, 0.2);
}

.testimonial-author-inline .avatar-initials {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}

.testimonial-author-inline .author-details {
  text-align: left;
}

.testimonial-author-inline .author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-author-inline .author-role {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* Pagination dots */
.testimonial-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brown-primary);
  opacity: 0.25;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, width 0.3s ease;
  border: none;
  padding: 0;
}

.testimonial-dot:hover {
  opacity: 0.5;
}

.testimonial-dot.active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

.testimonial-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 41, 21, 0.3);
}

/* Ancien système d'avatars - masqué mais gardé pour compatibilité JS */
.testimonial-authors {
  display: none;
}

.testimonial-author-info {
  display: none;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .testimonial-card {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    transform: none !important;
  }

  .testimonial-card.active,
  .testimonial-card.slide-out-left,
  .testimonial-card.slide-out-right {
    transform: none !important;
  }

  .testimonial-card.active h3,
  .testimonial-card.active p,
  .testimonial-card.active .testimonial-rating,
  .testimonial-card.active .testimonial-author-inline {
    animation: none;
  }

  .testimonial-card.active .testimonial-rating svg {
    animation: none;
  }

  .testimonial-nav:hover {
    transform: translateY(-50%);
  }

  .testimonial-dot.active {
    transition: opacity 0.3s ease;
  }
}

/* Responsive Testimonials */
@media (max-width: 768px) {
  .testimonials {
    padding: 50px 0 60px;
  }

  .testimonials::before {
    font-size: 140px;
    top: 10px;
    opacity: 0.04;
  }

  .testimonials .section-title {
    font-size: 1rem;
    letter-spacing: 0.12em;
    margin-bottom: 30px;
  }

  .testimonial-slider {
    padding: 0;
    flex-direction: column;
  }

  .testimonial-nav {
    display: none;
  }

  .testimonial-content {
    min-height: auto;
    height: auto;
    overflow: visible;
  }

  .testimonial-card {
    position: relative;
    padding: 30px 20px 30px;
    border-radius: 12px;
  }

  .testimonial-card.active {
    position: relative;
  }

  .testimonial-card::before {
    font-size: 40px;
    top: 12px;
    left: 16px;
  }

  .testimonial-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .testimonial-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .testimonial-rating {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .testimonial-rating svg {
    width: 16px;
    height: 16px;
  }

  .testimonial-author-inline {
    flex-direction: row;
    gap: 12px;
    padding-top: 20px;
  }

  .testimonial-author-inline .author-avatar-small {
    width: 48px;
    height: 48px;
  }

  .testimonial-author-inline .avatar-initials {
    font-size: 1rem;
  }

  .testimonial-author-inline .author-details {
    text-align: left;
  }

  .testimonial-author-inline .author-name {
    font-size: 0.95rem;
  }

  .testimonial-author-inline .author-role {
    font-size: 0.75rem;
  }

  .testimonial-pagination {
    margin-top: 30px;
    gap: 10px;
  }

  .testimonial-dot {
    width: 8px;
    height: 8px;
  }

  .testimonial-dot.active {
    width: 24px;
  }
}

@media (max-width: 480px) {
  .testimonials::before {
    font-size: 100px;
  }

  .testimonials {
    padding: 40px 0 50px;
  }

  .testimonial-card {
    padding: 24px 16px 25px;
  }

  .testimonial-card::before {
    font-size: 32px;
    top: 10px;
    left: 12px;
  }

  .testimonial-card h3 {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .testimonial-card p {
    font-size: 0.8rem;
    line-height: 1.7;
  }

  .testimonial-author-inline .author-avatar-small {
    width: 42px;
    height: 42px;
  }

  .testimonial-author-inline .avatar-initials {
    font-size: 0.875rem;
  }
}

/* ===== FOOTER ===== */
footer {
  background-color: #051C2C;
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 16px;
}

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

.footer-tagline {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a svg {
  width: 14px;
  height: 14px;
}

.social-links a:hover {
  background-color: var(--white);
  color: #051C2C;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
  width: 14px;
  height: 14px;
}

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

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
  background-color: #FFFDF8;
  padding: 40px 0 50px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Gilroy', sans-serif;
  font-size: 0.875rem;
  color: #662915;
  margin-bottom: 24px;
  transition: gap 0.3s ease;
}

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

.back-link svg {
  width: 18px;
  height: 18px;
}

.article-badge {
  display: inline-block;
  background-color: #662915;
  color: #FFFFFF;
  padding: 6px 14px;
  font-family: 'Gilroy', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.article-hero h1 {
  font-family: 'Gilroy', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 20px;
  max-width: 800px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Gilroy', sans-serif;
  font-size: 0.9rem;
  color: #6B6B6B;
}

.meta-separator {
  color: #CCCCCC;
}

.article-image {
  background-color: #FFFDF8;
  padding-bottom: 50px;
}

.article-image img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  height: auto;
}

.article-content {
  padding: 60px 0 80px;
  background-color: #FFFFFF;
}

.article-body {
  max-width: 700px;
  margin: 0 auto;
}

.article-body .lead {
  font-family: 'Gilroy', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
}

.article-body p {
  font-family: 'Gilroy', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: 'Gilroy', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.article-body blockquote {
  border-left: 3px solid #662915;
  padding-left: 24px;
  margin: 40px 0;
  font-style: italic;
}

.article-body blockquote p {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 12px;
}

.article-body blockquote cite {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  color: #662915;
  font-weight: 500;
}

.article-share {
  max-width: 700px;
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 1px solid #E4E8EF;
  display: flex;
  align-items: center;
  gap: 16px;
}

.article-share span {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.9rem;
  color: #6B6B6B;
}

.share-links {
  display: flex;
  gap: 12px;
}

.share-links a {
  width: 40px;
  height: 40px;
  border: 1px solid #E4E8EF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-links a:hover {
  background-color: #662915;
  border-color: #662915;
}

.share-links a svg {
  width: 18px;
  height: 18px;
  fill: #662915;
  transition: fill 0.3s ease;
}

.share-links a:hover svg {
  fill: #FFFFFF;
}

.share-links a svg[stroke] {
  fill: none;
  stroke: #662915;
}

.share-links a:hover svg[stroke] {
  stroke: #FFFFFF;
}

/* External link button */
.external-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #662915;
  color: #FFFFFF;
  padding: 14px 24px;
  font-family: 'Gilroy', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 40px;
  transition: background-color 0.3s ease, gap 0.3s ease;
  text-decoration: none;
}

.external-link-btn:hover {
  background-color: #4A1E0F;
  gap: 14px;
}

.external-link-btn svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
}

.related-articles {
  padding: 70px 0 80px;
  background-color: #FFFDF8;
}

.related-articles .news-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== PROJECTS PAGE ===== */
.projects-page-hero {
  background-color: #051C2C;
  padding: 50px 0 40px;
}

.projects-page-hero .section-title {
  color: #FFFFFF;
  margin-bottom: 16px;
  text-align: left;
  font-size: 40px;
  letter-spacing: 2.1px;
  line-height: 130%;
  text-transform: uppercase;
}

.projects-page-hero .section-title .accent {
  color: #FFC5B2;
}

.projects-subtitle {
  font-family: 'Gilroy', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  margin-bottom: 30px;
}

.projects-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}

.projects-filters .filter-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

.projects-filters .filter-btn:hover {
  border-color: #FFC5B2;
  color: #FFC5B2;
  background-color: rgba(255, 197, 178, 0.1);
}

.projects-filters .filter-btn.active {
  background-color: #FFC5B2;
  border-color: #FFC5B2;
  color: #051C2C;
}

/* Dropdown mobile - cache sur desktop */
.projects-filters-mobile {
  display: none;
}

.projects-gallery {
  padding: 0;
}

.projects-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 28, 44, 0.7);
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}

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

.gallery-overlay .project-name {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: 'Gilroy', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: left;
  line-height: 1.2;
}

.gallery-overlay .plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay .plus-icon span {
  font-size: 2rem;
  color: #662915;
  font-weight: 300;
  line-height: 1;
}

.gallery-overlay .project-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: 'Gilroy', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.03em;
  text-align: left;
  white-space: nowrap;
  border: none;
  padding: 0;
  background: transparent;
}

/* ===== PROJECT DETAIL PAGE ===== */
.project-detail-hero {
  background-color: #051C2C;
  padding: 40px 0 60px;
}

.project-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.project-slides {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  max-height: 600px;
}

.project-detail-hero .project-slide {
  display: none;
}

.project-detail-hero .project-slide.active {
  display: block;
}

.project-detail-hero .project-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.project-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 80px;
  background: transparent;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.project-slider-nav svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
}

.project-slider-nav:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.project-slider-nav.prev {
  left: 20px;
}

.project-slider-nav.next {
  right: 20px;
}

.project-detail-info {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.project-title {
  font-family: 'Gilroy', sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--text-dark);
}

.project-badge {
  display: inline-block;
  background-color: #662915;
  color: #FFFFFF;
  padding: 10px 20px;
  font-family: 'Gilroy', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #E4E8EF;
  margin-bottom: 30px;
}

.meta-item {
  padding: 20px 24px;
  border-right: 1px solid #E4E8EF;
}

.meta-item:last-child {
  border-right: none;
}

.meta-label {
  display: block;
  font-family: 'Gilroy', sans-serif;
  font-size: 0.85rem;
  color: #7A7A7A;
  margin-bottom: 8px;
}

.meta-value {
  display: block;
  font-family: 'Gilroy', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.project-description {
  border: 1px solid #E4E8EF;
  padding: 30px;
}

.project-description h2 {
  font-family: 'Gilroy', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.project-description p {
  font-family: 'Gilroy', sans-serif;
  font-size: 24px;
  line-height: 1.6;
  color: #4A4A4A;
  margin-bottom: 20px;
}

.project-description p:last-child {
  margin-bottom: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
}

.animate.visible {
  animation: fadeIn 0.6s ease forwards;
}

.service-card,
.news-card,
.feature {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.visible,
.news-card.visible,
.feature.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1),
.feature:nth-child(1),
.news-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2),
.feature:nth-child(2),
.news-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3),
.feature:nth-child(3),
.news-card:nth-child(3) { transition-delay: 0.15s; }
.service-card:nth-child(4) { transition-delay: 0.2s; }
.service-card:nth-child(5) { transition-delay: 0.25s; }
.service-card:nth-child(6) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid,
  .services-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }

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

  .project-slider-nav.prev {
    left: 20px;
  }

  .project-slider-nav.next {
    right: 20px;
  }

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

  .meta-item:nth-child(3) {
    border-right: none;
  }

  .meta-item:nth-child(4),
  .meta-item:nth-child(5) {
    border-top: 1px solid #E4E8EF;
  }
}

@media (max-width: 768px) {
  /* Logo reduit sur mobile */
  .logo img {
    height: 28px !important;
  }

  /* Header mobile - bouton CTA visible */
  header .container {
    position: relative;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .menu-toggle {
    display: flex;
    order: 2;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
  }

  /* Bouton CTA visible dans le header mobile */
  header .btn-cta-mobile {
    display: flex !important;
    background-color: #662915 !important;
    color: var(--white) !important;
    padding: 0 12px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    height: 32px !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 1rem;
  }

  /* Afficher le CTA mobile, cacher le CTA desktop */
  .btn-cta-mobile {
    display: flex !important;
  }

  .btn-cta-desktop {
    display: none !important;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }

  .nav-overlay.active {
    display: block;
  }

  .hero-slider {
    height: 480px;
  }

  /* Hero content centre en bas sur mobile */
  .slide-content {
    bottom: 40px;
    right: 20px;
    left: 20px;
    text-align: center;
  }

  .slide-content h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
  }

  .slide-content .slide-meta {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }

  .btn-view-project {
    display: inline-flex;
    margin: 0 auto;
  }

  /* Cacher les fleches de navigation du hero sur mobile */
  .slider-nav {
    display: none;
  }

  /* Why Choose Us - cards avec bordure sur fond bleu */
  .why-choose-us {
    padding: 40px 0;
  }

  .why-choose-us .section-title {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }

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

  .feature {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 24px 20px;
    text-align: left;
  }

  .feature h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #FFFFFF;
  }

  .feature p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
  }

  /* Services - cards avec bordure sur fond creme */
  .what-we-do {
    padding: 40px 0;
  }

  .what-we-do .section-title {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }

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

  .service-card {
    padding: 24px 20px;
    border: 1px solid #E5E0D8;
    background: #FFFDF8;
  }

  .service-card::before {
    display: none;
  }

  .service-card:hover {
    border-color: #E5E0D8;
  }

  .service-card:hover h3,
  .service-card:hover p,
  .service-card:hover .service-number {
    color: inherit;
  }

  .service-card:hover .service-icon {
    background-color: #FFEBE4;
  }

  .service-card:hover .service-icon svg {
    stroke: #1A1A1A;
  }

  .service-header {
    margin-bottom: 16px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    background-color: #FFEBE4;
  }

  .service-icon svg {
    width: 18px;
    height: 18px;
    stroke: #1A1A1A;
  }

  .service-number {
    font-size: 0.875rem;
    color: #1A1A1A;
    font-weight: 600;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1A1A1A;
  }

  .service-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #6B6B6B;
  }

  /* Our Projects - 1 image par ligne sur mobile */
  .our-projects {
    padding: 40px 0 0;
  }

  .our-projects .section-title {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  .projects-slider-wrapper {
    padding: 0;
  }

  .projects-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-slide {
    flex: none;
    min-width: auto;
  }

  .project-slide img {
    height: 220px;
    width: 100%;
  }

  /* Cacher la navigation des projets sur mobile */
  .projects-nav-container {
    display: none;
  }

  /* Overlay simplifie sur mobile */
  .project-slide .gallery-overlay {
    padding: 16px;
  }

  .gallery-overlay .project-name {
    font-size: 1rem;
    top: 16px;
    left: 16px;
  }

  .gallery-overlay .plus-icon {
    width: 50px;
    height: 50px;
  }

  .gallery-overlay .plus-icon span {
    font-size: 1.5rem;
  }

  .gallery-overlay .project-meta {
    font-size: 0.65rem;
    bottom: 16px;
    left: 16px;
  }

  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-nav {
    display: none;
  }

  /* Footer mobile */
  footer {
    padding: 40px 0 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
    margin-bottom: 0;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo img {
    height: 44px;
  }

  .social-links {
    justify-content: flex-start;
    margin-top: 20px;
    gap: 12px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .social-links a svg {
    width: 16px;
    height: 16px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
  }

  .footer-links ul {
    gap: 12px;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

  .footer-contact ul {
    gap: 14px;
  }

  .footer-contact li {
    justify-content: flex-start;
    font-size: 0.95rem;
  }

  .footer-contact li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer-bottom p {
    font-size: 0.8rem;
    text-align: center;
  }

  /* News section mobile */
  .news-archive {
    padding: 40px 0;
  }

  .news-archive .section-title {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  /* Cacher le header desktop, afficher le dropdown */
  .news-header {
    display: none;
  }

  .news-filters-mobile {
    display: block;
    margin-bottom: 20px;
  }

  /* Custom Dropdown */
  .custom-dropdown {
    position: relative;
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Gilroy', sans-serif;
    color: #1A1A1A;
    background-color: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
  }

  .dropdown-toggle:hover,
  .dropdown-toggle:focus {
    border-color: #662915;
    outline: none;
  }

  .custom-dropdown.open .dropdown-toggle {
    border-color: #662915;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 12px rgba(102, 41, 21, 0.15);
  }

  .dropdown-arrow {
    stroke: #662915;
    transition: transform 0.2s ease;
  }

  .custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 1px solid #662915;
    border-top: none;
    border-radius: 0 0 10px 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .custom-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-item {
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .dropdown-item:hover {
    background-color: #FFF5F2;
    color: #662915;
  }

  .dropdown-item.active {
    background-color: #662915;
    color: #FFFFFF;
    font-weight: 500;
  }

  .dropdown-item:last-child {
    border-radius: 0 0 10px 10px;
  }

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

  .news-card {
    display: flex;
    flex-direction: column;
  }

  .news-image img {
    height: 180px;
  }

  .news-content {
    padding: 14px;
  }

  .news-content time {
    font-size: 0.7rem;
  }

  .news-content h3 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .read-more {
    font-size: 0.8rem;
  }

  .news-badge {
    font-size: 0.55rem;
    padding: 3px 8px;
  }

  /* Page Projects - mobile */
  .projects-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .projects-gallery-grid .gallery-item {
    aspect-ratio: 4/3;
  }

  .projects-gallery-grid .gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  /* Cacher les boutons filtres, afficher le dropdown */
  .projects-filters {
    display: none;
  }

  .projects-filters-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
  }

  .filter-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #1A1A1A;
    letter-spacing: 0.05em;
  }

  .filter-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1A1A1A;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
  }

  .filter-select:focus {
    outline: none;
    border-color: #662915;
  }

  .projects-subtitle {
    font-size: 0.9rem;
  }

  .projects-page-hero {
    padding: 100px 0 30px;
  }

  .projects-page-hero .section-title {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .project-title {
    font-size: 2rem;
  }

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

  .meta-item:nth-child(2),
  .meta-item:nth-child(4) {
    border-right: none;
  }

  .meta-item:nth-child(3),
  .meta-item:nth-child(4),
  .meta-item:nth-child(5) {
    border-top: 1px solid #E4E8EF;
  }
}

@media (max-width: 480px) {
  /* Logo encore plus petit sur petit ecran */
  .logo img {
    height: 24px !important;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 36px;
  }

  .hero-slider {
    height: 420px;
  }

  .slide-content {
    bottom: 30px;
    right: 16px;
    left: 16px;
    text-align: center;
  }

  .slide-content h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }

  .slide-content .slide-meta {
    font-size: 0.7rem;
    margin-bottom: 14px;
  }

  .btn-view-project {
    padding: 10px 16px;
    font-size: 0.65rem;
  }

  /* Projets - 1 colonne sur petit ecran */
  .project-slide img {
    height: 200px;
  }

  .gallery-overlay .project-name {
    font-size: 0.9rem;
  }

  .gallery-overlay .plus-icon {
    width: 44px;
    height: 44px;
  }

  .gallery-overlay .plus-icon span {
    font-size: 1.2rem;
  }

  .gallery-overlay .project-meta {
    font-size: 0.6rem;
  }

  .why-choose-us,
  .our-projects,
  .what-we-do,
  .news-archive,
  .testimonials {
    padding: 40px 0;
  }

  /* Services sur petit ecran */
  .service-card {
    padding: 20px 16px;
  }

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

  .service-card p {
    font-size: 0.8rem;
  }

  .service-icon {
    width: 36px;
    height: 36px;
  }

  .service-icon svg {
    width: 16px;
    height: 16px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-authors {
    gap: 8px;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
  }

  .projects-gallery-grid {
    grid-template-columns: 1fr;
  }

  .projects-page-hero {
    padding: 90px 0 24px;
  }

  .projects-page-hero .section-title {
    font-size: 0.85rem;
  }

  .projects-subtitle {
    font-size: 0.85rem;
  }

  /* Projects page dropdown - style bleu fonce */
  .projects-filters-mobile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }

  .projects-filters-mobile .filter-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .projects-filters-mobile .custom-dropdown {
    flex: 1;
  }

  .projects-filters-mobile .dropdown-toggle {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    color: #FFFFFF;
    padding: 14px 18px;
    box-shadow: none;
  }

  .projects-filters-mobile .dropdown-toggle:hover,
  .projects-filters-mobile .dropdown-toggle:focus {
    border-color: #FFFFFF;
  }

  .projects-filters-mobile .custom-dropdown.open .dropdown-toggle {
    border-color: #FFFFFF;
    border-radius: 0;
    box-shadow: none;
  }

  .projects-filters-mobile .dropdown-arrow {
    stroke: #FFFFFF;
  }

  .projects-filters-mobile .dropdown-menu {
    background: #051C2C;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  .projects-filters-mobile .dropdown-item {
    color: #FFFFFF;
  }

  .projects-filters-mobile .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
  }

  .projects-filters-mobile .dropdown-item.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
  }

  .projects-filters-mobile .dropdown-item:last-child {
    border-radius: 0;
  }

  .project-detail-hero {
    padding: 0;
    margin: 0;
    background-color: transparent;
  }

  .project-slider {
    max-width: 100%;
    margin: 0;
  }

  .project-slides {
    max-height: none;
    margin: 0;
  }

  .project-detail-hero .project-slide img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    display: block;
  }

  .project-slider-nav {
    width: 32px;
    height: 64px;
  }

  .project-slider-nav svg {
    width: 16px;
    height: 16px;
  }

  .project-slider-nav.prev {
    left: 10px;
  }

  .project-slider-nav.next {
    right: 10px;
  }

  .project-detail-info {
    padding: 40px 0;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .project-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .project-meta {
    grid-template-columns: 1fr;
  }

  .meta-item {
    border-right: none;
    border-bottom: 1px solid #E4E8EF;
  }

  .meta-item:last-child {
    border-bottom: none;
  }

  .project-description {
    padding: 20px;
  }

  .project-description h2 {
    font-size: 1rem;
  }

  .project-description p {
    font-size: 0.9rem;
  }
}

/* ===== LEGACY SUPPORT (for other pages) ===== */
.philosophy {
  padding: 4rem 0;
}

.philosophy .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-image {
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
}

.philosophy-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.philosophy-content .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.philosophy-content h1 {
  margin-bottom: 1.5rem;
  font-size: 2.75rem;
}

.philosophy-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.italic {
  font-family: 'Caveat', cursive;
  font-style: italic;
  color: var(--brown-primary);
  font-size: 1.15em;
}

.principles {
  padding: 5rem 0;
  background-color: #F0F4E9;
}

.principles .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.principles h2 {
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.principle-card {
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.principle-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.principle-card:nth-child(1) { transition-delay: 0.1s; }
.principle-card:nth-child(2) { transition-delay: 0.2s; }
.principle-card:nth-child(3) { transition-delay: 0.3s; }
.principle-card:nth-child(4) { transition-delay: 0.4s; }
.principle-card:nth-child(5) { transition-delay: 0.5s; }
.principle-card:nth-child(6) { transition-delay: 0.6s; }

.principle-card .number {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.principle-card .number .icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  background: white;
  border-radius: 50%;
  color: var(--brown-primary);
  flex-shrink: 0;
}

.principle-card .number .icon path,
.principle-card .number .icon circle,
.principle-card .number .icon polyline {
  stroke: var(--brown-primary);
}

.principle-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.principle-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Projects page */
.projects-hero {
  padding: 3rem 0;
}

.projects-hero .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.5rem;
  padding: 2rem 0 5rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card:nth-child(1) { transition-delay: 0.1s; }
.project-card:nth-child(2) { transition-delay: 0.15s; }
.project-card:nth-child(3) { transition-delay: 0.2s; }
.project-card:nth-child(4) { transition-delay: 0.25s; }
.project-card:nth-child(5) { transition-delay: 0.3s; }
.project-card:nth-child(6) { transition-delay: 0.35s; }

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

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.5s ease;
}

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

.project-card.tall {
  grid-row: span 2;
}

.project-card.tall img {
  height: 100%;
  min-height: 440px;
}

.project-card.wide {
  grid-column: span 2;
}

.project-card.wide img {
  height: 280px;
}

.project-info {
  padding: 1rem 0;
}

.project-info .meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.project-info h3 {
  font-size: 1rem;
  font-weight: 500;
}

/* About page */
.achievements {
  background: var(--bg-cream);
  padding: 5rem 0;
}

.achievements .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--brown-primary);
  margin-bottom: 1rem;
}

.achievements h2 {
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.achievement-card {
  background: white;
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.achievement-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.achievement-card:nth-child(1) { transition-delay: 0.1s; }
.achievement-card:nth-child(2) { transition-delay: 0.2s; }
.achievement-card:nth-child(3) { transition-delay: 0.3s; }

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.achievement-card .icon {
  width: 40px;
  height: 40px;
  background: #FDF6E3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brown-light);
}

.achievement-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.achievement-list {
  list-style: none;
}

.achievement-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: background 0.3s ease;
}

.achievement-list li:hover {
  background: rgba(0, 0, 0, 0.02);
}

.achievement-list li:last-child {
  border-bottom: none;
}

.achievement-list li span {
  color: var(--text-muted);
}

/* Responsive for legacy */
@media (max-width: 968px) {
  .philosophy .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .philosophy-image {
    max-width: 100%;
    order: -1;
  }

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

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

  .projects-grid .project-card {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .projects-grid .project-card.tall {
    grid-row: auto;
  }

  .projects-grid .project-card.tall img,
  .projects-grid .project-card img {
    height: 180px;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .philosophy-content h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .principles h2,
  .achievements h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .principles-grid,
  .projects-grid,
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .projects-grid .project-card {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .projects-grid .project-card.tall {
    grid-row: auto;
  }

  .projects-grid .project-card.tall img {
    height: 250px;
    min-height: auto;
  }

  .projects-grid .project-card img {
    height: 220px;
  }

  .philosophy {
    padding: 2rem 0;
  }

  .philosophy-content p {
    font-size: 0.9rem;
  }

  .principle-card {
    padding: 1.25rem;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 0 100px;
  background-color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info .section-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--brown-primary);
  margin-bottom: 20px;
  display: block;
}

.contact-info h1 {
  font-family: 'Gilroy', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  border: 1px solid var(--border-light);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  color: var(--brown-primary);
}

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

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown-primary);
}

a.contact-value:hover {
  text-decoration: underline;
}

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

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 60px 0 80px;
  background-color: var(--white);
}

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

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

.about-info .section-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--brown-primary);
  margin-bottom: 20px;
  display: block;
}

.about-info h1 {
  font-family: 'Gilroy', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.about-info h1 em {
  font-family: 'Caveat', cursive;
  font-style: italic;
  color: var(--brown-primary);
}

.about-info p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Responsive Contact & About */
@media (max-width: 768px) {
  .contact-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .contact-info h1,
  .about-info h1 {
    font-size: 1.75rem;
  }

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

  .contact-image img,
  .about-image img {
    height: 300px;
  }
}

/* Active nav link */
nav a.active {
  color: var(--brown-primary);
}

nav a.active::after {
  width: 100%;
}
