@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Lato:wght@300;400;700&display=swap');

:root {
  --cream: #FAF8F5;
  --cream-dark: #F2EDE7;
  --ocre: #C8A84E;
  --ocre-light: #D4B96A;
  --brun: #3E2F1C;
  --brun-light: #5A4632;
  --brun-medium: #4A3828;
  --gris: #3E2F1C;
  --gris-light: #B0A698;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Lato', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--brun);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 168, 78, 0.15);
  transition: all 0.3s ease;
}

nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ocre);
  letter-spacing: 0.05em;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}

nav .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav .nav-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brun-light);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
  font-weight: 400;
}

nav .nav-links a:hover,
nav .nav-links a.active {
  color: var(--ocre);
}

/* ============ HERO - ACCUEIL ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  padding-right: 80px;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--brun);
  margin-bottom: 24px;
}

.hero-text {
  font-size: 0.95rem;
  color: var(--gris);
  margin-bottom: 36px;
  max-width: 400px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocre);
  border: 1px solid var(--ocre);
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--ocre);
  color: var(--white);
}

.hero-image {
  flex: 1;
  height: 75vh;
  background: url('../images/paysageagricole.PNG') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* ============ DEUX CHEMINS (ACCUEIL) ============ */
.two-paths {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.two-paths-tag,
.section-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre);
  text-align: center;
  margin-bottom: 18px;
  font-weight: 400;
}

.offres-section .section-tag,
.process-inner .section-tag {
  margin-bottom: 12px;
}

.offres-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  color: var(--brun);
  margin-bottom: 60px;
}

.process-inner .section-tag {
  text-align: left;
}

.two-paths h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  margin-bottom: 12px;
  color: var(--brun);
}

.two-paths .section-line {
  width: 50px;
  height: 1px;
  background: var(--ocre);
  margin: 0 auto 60px;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.path-card {
  background: var(--white);
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(62, 47, 28, 0.08);
}

.path-card-image {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.path-card-image.lieux {
  background: url('../images/paysageagricole.PNG') center center / cover no-repeat;
}

.path-card-image.reconstitution {
  background: url('../images/Nivolet.jpg') center center / cover no-repeat;
}

.path-card-content {
  padding: 36px;
}

.path-card-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 12px;
}

.path-card-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brun);
  margin-bottom: 12px;
  line-height: 1.3;
}

.path-card-text {
  font-size: 0.9rem;
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 20px;
}

.path-card-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocre);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.path-card:hover .path-card-link {
  gap: 14px;
}

/* ============ BÉNÉFICES (POURQUOI S'OFFRIR UNE AQUARELLE) ============ */
.benefits-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.benefits-section h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--brun);
  margin-bottom: 12px;
}

.benefits-section .section-line {
  width: 50px;
  height: 1px;
  background: var(--ocre);
  margin: 0 0 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  text-align: left;
}

.benefit-card {
  background: var(--cream-dark);
  padding: 40px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(62, 47, 28, 0.06);
}

.benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ocre);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  opacity: 0.6;
}

.benefit-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.benefit-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--brun);
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-card p {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============ PAGE LIEUX QUI COMPTENT ============ */
.page-header {
  padding: 160px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 20px;
}

.page-header-title {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--brun);
  margin-bottom: 20px;
  max-width: 600px;
}

.page-header-text {
  font-size: 1rem;
  color: var(--gris);
  max-width: 500px;
  line-height: 1.9;
}

/* ============ OFFRES ============ */
.offres-section {
  padding: 60px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.offres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.offre-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  border: 1px solid rgba(200, 168, 78, 0.12);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.offre-card .offre-cta {
  margin-top: auto;
}

.offre-card.featured {
  border-color: var(--ocre);
}

.offre-card.featured::before {
  content: 'Sur mesure';
  position: absolute;
  top: -1px;
  left: 32px;
  background: var(--ocre);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
}

.offre-card.outlined {
  border-color: var(--ocre);
}

.offre-card.outlined::before {
  content: 'Avec ateliers';
  position: absolute;
  top: 0;
  left: 32px;
  background: transparent;
  color: var(--ocre);
  border: 1px solid var(--ocre);
  border-top: none;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 15px 5px;
}

.offre-card:hover {
  box-shadow: 0 8px 30px rgba(62, 47, 28, 0.06);
}

.offre-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brun);
  margin-bottom: 8px;
}

.offre-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ocre);
  margin-bottom: 6px;
}

.offre-price-note {
  font-size: 0.8rem;
  color: var(--gris-light);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(200, 168, 78, 0.15);
}

.offre-includes {
  list-style: none;
  margin-bottom: 32px;
}

.offre-includes li {
  font-size: 0.88rem;
  color: var(--brun-light);
  padding: 8px 0;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.offre-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 1px;
  background-color: var(--ocre);
  margin-top: 11px;
  transform: translateZ(0);
}

.offre-cta {
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--ocre);
  color: var(--ocre);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.offre-cta:hover {
  background: var(--ocre);
  color: var(--white);
}

.offre-card.featured .offre-cta {
  background: var(--ocre);
  color: var(--white);
}

.offre-card.featured .offre-cta:hover {
  background: var(--brun);
  border-color: var(--brun);
}

/* ============ PROCESSUS ============ */
.process-section {
  background: var(--cream-dark);
  padding: 100px 40px;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-section h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 12px;
  color: var(--brun);
}

.process-section .section-line {
  width: 50px;
  height: 1px;
  background: var(--ocre);
  margin-bottom: 60px;
}

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

.process-step {
  position: relative;
}

.process-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200, 168, 78, 0.3);
  margin-bottom: 12px;
}

.process-step-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--brun);
  margin-bottom: 10px;
}

.process-step-text {
  font-size: 0.88rem;
  color: var(--gris);
  line-height: 1.8;
}

/* ============ PHRASE FINALE ============ */
.closing-phrase {
  padding: 100px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.closing-phrase p {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--brun);
  line-height: 1.5;
}

.closing-phrase .accent {
  color: var(--ocre);
}

/* ============ PAGE RECONSTITUTION ============ */
.recon-intro {
  padding: 0 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.recon-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.recon-content h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--brun);
  margin-bottom: 16px;
}

.recon-content p {
  font-size: 0.92rem;
  color: var(--gris);
  line-height: 1.9;
  margin-bottom: 16px;
}

.recon-collab {
  background: var(--cream-dark);
  padding: 80px 40px;
}

.recon-collab-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.recon-collab .recon-collab-tag {
  font-family: var(--sans);
  font-size: 11.2px;
  font-weight: 300;
  line-height: 19.04px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C8A84E;
  margin-bottom: 20px;
}

.recon-collab h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--brun);
  margin-bottom: 16px;
}

.recon-collab p {
  font-size: 0.92rem;
  color: var(--gris);
  line-height: 1.9;
  margin-bottom: 16px;
}

.recon-devis {
  padding: 80px 40px 180px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.recon-devis p {
  font-family: var(--serif);
  font-size: 25.6px;
  font-style: italic;
  font-weight: 300;
  color: var(--brun);
  margin-bottom: 32px;
  line-height: 1.5;
}

.recon-devis .accent { color: var(--ocre); }

/* ============ VIDEO CARD ============ */
.video-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--white);
  padding: 22px 28px;
  border: 1px solid rgba(200, 168, 78, 0.18);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  width: 100%;
}

.video-card:hover {
  border-color: var(--ocre);
  box-shadow: 0 6px 24px rgba(62, 47, 28, 0.06);
  transform: translateY(-2px);
}

.video-card-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ocre);
  transition: background 0.3s, color 0.3s;
}

.video-card-play svg { width: 14px; height: 14px; display: block; }

.video-card:hover .video-card-play {
  background: var(--ocre);
  color: var(--white);
}

.video-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.video-card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brun);
  text-decoration: underline;
  text-decoration-color: rgba(200, 168, 78, 0.45);
  text-underline-offset: 4px;
}

.video-card-subtitle {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--gris);
  text-decoration: underline;
  text-decoration-color: rgba(200, 168, 78, 0.25);
  text-underline-offset: 3px;
}

/* Video modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 5, 0.93);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.video-modal.open { display: flex; }
.video-modal video {
  max-width: min(100%, 960px);
  max-height: 85vh;
  display: block;
  background: #000;
}
.video-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  line-height: 1;
}

/* ============ PROJET / COMPARATEUR AVANT-APRÈS ============ */
.recon-project {
  padding: 60px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.recon-project-header {
  margin-bottom: 36px;
}

.recon-project-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 12px;
}

.recon-project h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--brun);
  margin-bottom: 14px;
}

.recon-project-text {
  font-size: 0.92rem;
  color: var(--gris);
  line-height: 1.9;
  max-width: 640px;
}

.compare-slider {
  --pos: 50%;
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: var(--cream-dark);
  touch-action: none;
}

.compare-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.compare-before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--brun);
  box-shadow: 0 2px 12px rgba(62, 47, 28, 0.2);
  pointer-events: none;
  letter-spacing: 2px;
}

.compare-label {
  position: absolute;
  top: 16px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(62, 47, 28, 0.65);
  padding: 6px 12px;
  pointer-events: none;
}

.compare-label.left { left: 16px; }
.compare-label.right { right: 16px; }

.recon-project-video-row {
  width: 100%;
  max-width: 780px;
  margin: 40px 0 0;
  display: flex;
  align-items: center;
  gap: 40px;
}

.recon-project-video {
  display: block;
  width: 280px;
  flex-shrink: 0;
  background: var(--brun);
}

.recon-project-video-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--brun);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .recon-project-video-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .recon-project-video { width: 100%; max-width: 320px; }
}

/* ============ TIMELINE ============ */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.timeline-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: var(--cream-dark);
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .timeline-image {
    aspect-ratio: auto;
    height: auto;
    object-fit: initial;
  }
}

.timeline-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brun);
  text-align: center;
}

.timeline-subtitle {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
  text-align: center;
  margin-top: 6px;
}

.timeline-axis {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-top: 8px;
}

.timeline-line {
  flex: 1;
  height: 1px;
  background: var(--ocre);
  position: relative;
}

.timeline-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid var(--ocre);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

@media (max-width: 700px) {
  .timeline-grid { grid-template-columns: 1fr; gap: 32px; }
}

.video-pair-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
}

.video-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 340px;
  flex-shrink: 0;
}

.video-pair video {
  width: 100%;
  display: block;
  background: var(--brun);
}

.video-pair-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--brun);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .video-pair-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .video-pair { width: 100%; max-width: 560px; }
}

@media (max-width: 700px) {
  .video-pair { grid-template-columns: 1fr; gap: 16px; }
}

/* ============ PAGE À PROPOS ============ */
.about-section {
  padding: 160px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  height: 550px;
  background: url('../images/clementinephoto.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.about-content {
  padding-top: 40px;
}

.about-content .about-tag {
  font-family: var(--serif);
  font-size: 25.6px;
  font-weight: 300;
  font-style: italic;
  line-height: 43.52px;
  color: #3E2F1C;
  margin-bottom: 24px;
}

.about-content p {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-content p.small {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.9;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: var(--ocre);
  margin: 28px 0;
}

/* ============ PAGE CONTACT ============ */
.contact-section {
  padding: 160px 40px 200px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-section .page-header-tag {
  text-align: center;
}

.contact-title {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--brun);
  margin-bottom: 20px;
}

.contact-text {
  font-size: 0.95rem;
  color: var(--gris);
  margin-bottom: 48px;
  line-height: 1.8;
}

.contact-email {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brun);
  text-decoration: none;
  display: block;
  margin-bottom: 40px;
  transition: color 0.3s;
}

.contact-email:hover {
  color: var(--ocre);
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.contact-social a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gris);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-social a:hover {
  color: var(--ocre);
}

/* ============ FOOTER ============ */
footer {
  background: #3b1a0a;
  color: rgba(255,255,255,0.5);
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 24px 24px;
  }
  footer .footer-right {
    flex-direction: column;
    gap: 8px;
  }
}

footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--ocre);
}

footer .footer-left {
  font-family: var(--sans);
  letter-spacing: 0.05em;
}

footer .footer-right {
  display: flex;
  gap: 24px;
  font-family: var(--sans);
  letter-spacing: 0.05em;
}

/* ============ GALERIE ============ */
.gallery-section {
  padding: 60px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-section h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--brun);
  margin-bottom: 8px;
}

.gallery-section .section-line {
  width: 50px;
  height: 1px;
  background: var(--ocre);
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gallery-item {
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s;
}

.gallery-image.g1,
.gallery-image.g2 {
  object-fit: contain;
  background: var(--cream-dark);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.02);
}

@media (max-width: 700px) {
  .gallery-image {
    height: auto;
    object-fit: initial;
  }
}

.gallery-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--brun);
  margin-top: 14px;
  text-align: left;
}

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

.hero-content { animation: fadeInUp 0.8s ease both; }
.hero-image { animation: fadeInUp 0.8s ease 0.2s both; }

/* ============ MOBILE OVERLAY ============ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-overlay.open { display: flex; }

.mobile-overlay a {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brun-light);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

.mobile-overlay a:hover,
.mobile-overlay a.active { color: var(--ocre); }

/* ============ BURGER MENU ============ */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 200;
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brun);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }

  nav .nav-links { display: none; }

  .hero { flex-direction: column; padding-top: 100px; }
  .hero-content { padding-right: 0; margin-bottom: 40px; }
  .hero-image { width: 100%; height: 50vh; }
  .hero-title { font-size: 2.4rem; }
  .paths-grid { grid-template-columns: 1fr; }
  .offres-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .about-section { grid-template-columns: 1fr; gap: 40px; }
  .recon-intro { grid-template-columns: 1fr; }
  .recon-collab-inner { grid-template-columns: 1fr; }
  .page-header-title { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ BLOG ============ */
.blog-section {
  padding: 160px 40px 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-top: 60px;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(62, 47, 28, 0.08);
}

.blog-card-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background: var(--cream-dark);
}

.blog-card-body {
  padding: 32px 40px 32px 0;
}

.blog-card-date {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 14px;
  font-weight: 400;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: var(--brun);
  margin-bottom: 16px;
}

.blog-card-excerpt {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 22px;
}

.blog-card-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocre);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.blog-card:hover .blog-card-link {
  gap: 14px;
}

@media (max-width: 800px) {
  .blog-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .blog-card-body { padding: 28px 28px 36px; }
  .blog-card-image { height: 260px; }
}

/* ============ ARTICLE PAGE ============ */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 160px 40px 100px;
}

.article-back {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.article-back:hover { color: var(--brun); }

.article-meta {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 18px;
  font-weight: 400;
}

.article-title {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  color: var(--brun);
  margin-bottom: 16px;
}

.article-author {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--gris);
  margin-bottom: 48px;
}

.article-figure {
  margin: 0 0 56px;
}

.article-image {
  width: 100%;
  height: auto;
  display: block;
  background: var(--cream-dark);
}

.article-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gris);
  text-align: center;
  margin-top: 12px;
}

.article-figure-pair {
  margin: 0 0 56px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.article-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.article-pair-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 600px) {
  .article-pair-images { grid-template-columns: 1fr; }
}

.article-content {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--brun-light);
  line-height: 1.85;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 300;
  color: var(--brun);
  margin: 48px 0 18px;
  line-height: 1.3;
}

.article-content em {
  font-style: italic;
}

.article-footer {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 168, 78, 0.25);
  text-align: center;
}

.article-footer p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brun);
  margin-bottom: 24px;
}

@media (max-width: 700px) {
  .article-title { font-size: 1.9rem; }
  .article { padding: 130px 24px 80px; }
  .article-content h2 { font-size: 1.4rem; }
}
