/* ═══════════════════════════════════════════════════════
   CERCLE NUANCES — Feuille de styles
   Pour modifier les couleurs : changez les variables :root
   Pour modifier la typo : changez les font-family
═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Palette de couleurs ── */
:root {
  --vert:     #1B4332;
  --vert-mid: #2D5244;
  --or:       #C9A462;
  --or-clair: #DFC08A;
  --creme:    #F7F3EC;
  --beige:    #EDE8DC;
  --gris:     #6B6560;
  --blanc:    #FFFFFF;
  --texte:    #1B2B24;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--creme);
  color: var(--texte);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(27,67,50,.96); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 80px;
  border-bottom: 1px solid rgba(201,164,98,.2);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; cursor: pointer; }
.nav-logo img { height: 62px; transition: opacity .2s; }
.nav-logo:hover img { opacity: .8; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.72); text-decoration: none;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  padding-bottom: 2px; border-bottom: 1px solid transparent; transition: all .2s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--or); border-bottom-color: var(--or); }
.nav-cta {
  color: var(--or); border: 1px solid rgba(201,164,98,.5); padding: .45rem 1.3rem;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; transition: all .22s; cursor: pointer; background: transparent;
  font-family: 'Montserrat', sans-serif;
}
.nav-cta:hover { background: var(--or); color: var(--vert); }

/* Hamburger mobile */
.nav-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: .5rem;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,.8);
  transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile overlay */
.nav-mobile {
  display: none; position: fixed; inset: 80px 0 0 0; z-index: 190;
  background: rgba(27,67,50,.98); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: .75rem; letter-spacing: .3em; text-transform: uppercase;
  cursor: pointer; transition: color .2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--or); }
.nav-mobile .nav-cta { margin-top: 1rem; }

/* ══════════════════════════════════════════════════════
   SYSTÈME DE PAGES (SPA)
══════════════════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ══════════════════════════════════════════════════════
   BOUTONS
══════════════════════════════════════════════════════ */
.btn-or {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; border: 1px solid var(--or);
  color: var(--or); padding: .85rem 2.2rem; font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: all .25s; font-family: 'Montserrat', sans-serif;
}
.btn-or:hover { background: var(--or); color: var(--vert); }
.btn-vert {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--vert); border: 1px solid var(--vert);
  color: var(--blanc); padding: .85rem 2.2rem; font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: all .25s; font-family: 'Montserrat', sans-serif;
}
.btn-vert:hover { background: var(--or); border-color: var(--or); color: var(--vert); }

/* ══════════════════════════════════════════════════════
   TYPOGRAPHIE UTILITAIRES
══════════════════════════════════════════════════════ */
.label {
  font-size: .57rem; letter-spacing: .45em; text-transform: uppercase;
  color: var(--or); display: block; margin-bottom: .8rem;
}
.titre { font-family: 'Cormorant Garamond', serif; line-height: 1.1; font-weight: 300; color: var(--texte); }
.titre em { font-style: italic; color: var(--vert-mid); }
.titre-blanc { color: var(--blanc); }
.titre-blanc em { color: var(--or); font-style: italic; }
.divider   { width: 40px; height: 1px; background: var(--or); margin: 1.2rem 0; }
.divider-c { width: 40px; height: 1px; background: var(--or); margin: 1.2rem auto; }

/* ══════════════════════════════════════════════════════
   HERO — PAGE ACCUEIL
══════════════════════════════════════════════════════ */
#hero {
  position: relative; width: 100%; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: -5%;
  background: url('../img/hero-photo.png') center center / cover no-repeat;
  animation: kenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0)     translateY(0); }
  100% { transform: scale(1.07) translateX(-1.5%) translateY(-1%); }
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 20%, rgba(27,67,50,.3) 100%),
    linear-gradient(to bottom, rgba(27,67,50,.5) 0%, rgba(27,67,50,.28) 45%, rgba(27,67,50,.72) 100%);
}
.hero-line {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 0; height: 1px; background: rgba(201,164,98,.3); z-index: 5;
  animation: heroLine 1.4s cubic-bezier(.4,0,.2,1) .4s forwards;
}
@keyframes heroLine { to { width: min(560px, 78vw); } }
.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
}
.hero-name-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 300; letter-spacing: .55em; text-transform: uppercase;
  color: var(--blanc); opacity: .95;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
  padding-right: .55em;
}
.hero-eyebrow {
  opacity: 0; transform: translateY(14px);
  animation: heroSlideUp .7s ease .55s forwards;
  font-size: .6rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--or); margin: 1.5rem 0 .7rem;
}
.hero-title {
  opacity: 0; transform: translateY(22px);
  animation: heroSlideUp .8s ease .75s forwards;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 9vw, 8.5rem); font-weight: 300;
  color: var(--blanc); line-height: .93;
}
.hero-title em { font-style: italic; color: var(--or); }
.hero-subtitle {
  opacity: 0; transform: translateY(14px);
  animation: heroSlideUp .7s ease 1s forwards;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin: 1.5rem 0 2.6rem; font-weight: 300;
}
.hero-cta {
  opacity: 0; animation: heroFade .7s ease 1.2s forwards;
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: .35rem;
  opacity: 0; animation: heroFade .7s ease 1.6s forwards;
}
.hero-scroll span {
  font-size: .53rem; letter-spacing: .3em; color: rgba(255,255,255,.38); text-transform: uppercase;
}
.scroll-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--or);
  animation: scrollBounce 1.6s ease-in-out 2s infinite;
}
@keyframes scrollBounce  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }
@keyframes heroFadeScale { to { opacity: 1; transform: scale(1); } }
@keyframes heroSlideUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes heroFade      { to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════════════════════
   STRIP CHIFFRES
══════════════════════════════════════════════════════ */
#strip {
  background: var(--vert);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem; gap: 5rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(201,164,98,.12);
}
.strip-stat { text-align: center; }
.strip-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.8rem;
  color: var(--or); font-style: italic; font-weight: 300; display: block; line-height: 1;
}
.strip-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: .3rem; }
.strip-sep { width: 1px; height: 40px; background: rgba(201,164,98,.2); }

/* ══════════════════════════════════════════════════════
   NOS OFFRES — 3 cartes
══════════════════════════════════════════════════════ */
#offres { background: var(--creme); padding: 7rem 3rem; }
.offres-header { text-align: center; max-width: 520px; margin: 0 auto 4.5rem; }
.offres-header .titre { font-size: clamp(2rem, 4vw, 3rem); }
.offres-header p { color: var(--gris); font-size: .8rem; line-height: 1.85; margin-top: .8rem; }
.offres-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; max-width: 1280px; margin: 0 auto; }
.offre-card { position: relative; height: 600px; overflow: hidden; cursor: pointer; }
.offre-photo { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .65s cubic-bezier(.4,0,.2,1); }
.offre-card:hover .offre-photo { transform: scale(1.07); }
.offre-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(27,67,50,.2) 0%, rgba(27,67,50,.5) 40%, rgba(27,67,50,.92) 100%);
  transition: background .4s;
}
.offre-card:hover .offre-overlay { background: linear-gradient(170deg, rgba(27,67,50,.35) 0%, rgba(27,67,50,.6) 40%, rgba(27,67,50,.97) 100%); }
.offre-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--or); z-index: 3; transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.offre-card:hover::before { transform: scaleX(1); }
.offre-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem 2.8rem; }
.offre-num { position: absolute; top: 1.8rem; right: 2rem; font-family: 'Cormorant Garamond', serif; font-size: 6rem; color: rgba(201,164,98,.1); font-weight: 300; line-height: 1; z-index: 2; }
.offre-line { width: 30px; height: 1px; background: var(--or); margin-bottom: 1.1rem; }
.offre-titre { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--blanc); line-height: 1.05; margin-bottom: .8rem; }
.offre-titre em { font-style: italic; color: var(--or); }
.offre-desc { color: rgba(255,255,255,.58); font-size: .74rem; line-height: 1.75; margin-bottom: 1.5rem; }
.offre-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.7rem; }
.tag { font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; border: 1px solid rgba(201,164,98,.38); color: rgba(201,164,98,.72); padding: .26rem .7rem; }
.offre-lien {
  font-size: .58rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--or); display: flex; align-items: center; gap: .5rem;
  opacity: 0; transform: translateY(10px); transition: all .3s ease;
}
.offre-lien::after { content: '→'; font-size: .95rem; }
.offre-card:hover .offre-lien { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   GALERIE TEASER
══════════════════════════════════════════════════════ */
#galerie-teaser { background: var(--blanc); padding: 6rem 0; }
.gal-header { text-align: center; max-width: 500px; margin: 0 auto 3.5rem; padding: 0 2rem; }
.gal-header p { color: var(--gris); font-size: .8rem; line-height: 1.8; margin-top: .7rem; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 3px;
}
.gal-item { overflow: hidden; position: relative; cursor: pointer; background: var(--beige); }
.gal-photo { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.gal-item:hover .gal-photo { transform: scale(1.07); }
.gal-item::after { content: ''; position: absolute; inset: 0; background: rgba(27,67,50,0); transition: background .3s; }
.gal-item:hover::after { background: rgba(27,67,50,.3); }

/* ══════════════════════════════════════════════════════
   INSTAGRAM REELS
══════════════════════════════════════════════════════ */
#instagram { background: var(--beige); padding: 7rem 3rem; }
.insta-header { text-align: center; max-width: 500px; margin: 0 auto 3.5rem; }
.insta-header p { color: var(--gris); font-size: .8rem; line-height: 1.8; margin-top: .7rem; }
.insta-handle {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--vert-mid); font-size: .7rem; letter-spacing: .1em;
  text-decoration: none; margin-top: .5rem; transition: color .2s;
}
.insta-handle:hover { color: var(--or); }
.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 1000px; margin: 0 auto; }
.reel-card { position: relative; overflow: hidden; background: #000; border: 1px solid rgba(27,67,50,.08); }
.reel-card iframe { width: 100%; aspect-ratio: 9/16; border: none; display: block; }

/* ══════════════════════════════════════════════════════
   TÉMOIGNAGE
══════════════════════════════════════════════════════ */
#temoignage { background: var(--vert); padding: 5.5rem 3rem; text-align: center; }
.temo-quote { font-size: 5rem; line-height: .4; color: rgba(201,164,98,.13); font-family: 'Cormorant Garamond', serif; display: block; margin-bottom: 1.3rem; }
#temoignage blockquote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem,2.2vw,1.85rem); font-style: italic; font-weight: 300; color: var(--blanc); max-width: 740px; margin: 0 auto 1.8rem; line-height: 1.55; }
#temoignage cite { font-style: normal; font-size: .63rem; letter-spacing: .25em; text-transform: uppercase; color: var(--or); }

/* ══════════════════════════════════════════════════════
   MAISON MARTIN TEASER (accueil)
══════════════════════════════════════════════════════ */
#mm-teaser {
  background: var(--beige); position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center;
}
.mm-teaser-bg {
  position: absolute; inset: 0;
  background: url('../img/mm-01.jpg') center/cover no-repeat; opacity: .12;
}
.mm-teaser-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(237,232,220,.98) 45%, rgba(237,232,220,.5) 100%);
}
.mm-teaser-content { position: relative; z-index: 1; padding: 6rem 3rem; max-width: 620px; }
.mm-teaser-content h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,4.5vw,4rem);
  font-weight: 300; color: var(--texte); line-height: 1.05; margin-bottom: .6rem;
}
.mm-teaser-content h2 em { font-style: italic; color: var(--vert-mid); }
.mm-teaser-content p { font-size: .82rem; color: var(--gris); line-height: 1.9; margin-bottom: 2rem; }
.mm-teaser-photos {
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  display: grid; grid-template-rows: 1fr 1fr; gap: 3px;
}
.mm-teaser-photo { background-size: cover; background-position: center; }

/* ══════════════════════════════════════════════════════
   CONTACT / SOUMISSION
══════════════════════════════════════════════════════ */
#contact-moderne { background: var(--creme); padding: 8rem 3rem; }
.contact-top { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
.contact-top h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,4vw,3.8rem); font-weight: 300; color: var(--texte); line-height: 1.05; margin-bottom: 1rem; }
.contact-top h2 em { font-style: italic; color: var(--vert-mid); }
.contact-top p { color: var(--gris); font-size: .8rem; line-height: 1.85; }
.type-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 820px; margin: 0 auto 4rem; }
.type-card {
  cursor: pointer; border: 1px solid rgba(27,67,50,.12); background: var(--blanc);
  padding: 2.5rem 2rem; text-align: center; transition: all .25s;
  position: relative; overflow: hidden;
}
.type-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--or); transform: scaleX(0); transition: transform .3s ease;
}
.type-card:hover::after, .type-card.selected::after { transform: scaleX(1); }
.type-card:hover, .type-card.selected { border-color: rgba(201,164,98,.45); background: rgba(201,164,98,.04); }
.type-card.selected .type-icon svg { stroke: var(--or); }
.type-card.selected .type-nom { color: var(--vert); }
.type-icon { margin-bottom: 1rem; }
.type-icon svg { width: 28px; height: 28px; stroke: rgba(27,67,50,.35); transition: stroke .25s; }
.type-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: rgba(201,164,98,.12); font-style: italic; position: absolute; top: .8rem; right: 1.2rem; line-height: 1; }
.type-nom { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--texte); display: block; margin-bottom: .3rem; transition: color .25s; }
.type-sous { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gris); }
.contact-form-wrap { max-width: 820px; margin: 0 auto; }
.contact-form-inner { background: var(--blanc); padding: 4rem 4.5rem; border-top: 2px solid var(--or); display: none; }
.contact-form-inner.visible { display: block; animation: fadeUp .4s ease; }
.cf-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--vert); margin-bottom: 2rem; }
.cf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.cf-full { margin-bottom: 1.2rem; }
.cf-field { display: flex; flex-direction: column; gap: .3rem; }
.cf-field label { font-size: .57rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(27,67,50,.55); font-weight: 500; }
.cf-field input,
.cf-field select,
.cf-field textarea {
  border: none; border-bottom: 1px solid rgba(27,67,50,.18);
  background: transparent; padding: .65rem 0; font-family: 'Montserrat', sans-serif;
  font-size: .82rem; color: var(--texte); outline: none; transition: border-color .2s; appearance: none;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-bottom-color: var(--or); }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(27,67,50,.28); }
.cf-field textarea { resize: none; min-height: 90px; }
.cf-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A462' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center; padding-right: 1.5rem;
}
.cf-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 2.5rem; flex-wrap: wrap; gap: 1.5rem; }
.cf-privacy { font-size: .65rem; color: rgba(27,67,50,.4); max-width: 320px; line-height: 1.6; }
.cf-success { display: none; text-align: center; padding: 4rem 2rem; }
.cf-success.show { display: block; animation: fadeUp .4s ease; }
.cf-success-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(201,164,98,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.cf-success-icon svg { stroke: var(--or); }
.cf-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--vert); margin-bottom: .7rem; }
.cf-success p { font-size: .78rem; color: var(--gris); line-height: 1.85; }

/* ══════════════════════════════════════════════════════
   HERO GÉNÉRIQUE (pages internes)
══════════════════════════════════════════════════════ */
.page-hero { padding-top: 80px; position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: flex-end; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(27,67,50,.55) 0%, rgba(27,67,50,.88) 100%); }
.page-hero-content { position: relative; z-index: 1; padding: 5rem 5rem 4rem; }
.page-hero-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem,6vw,5rem); font-weight: 300; color: var(--blanc); line-height: 1; margin-bottom: 1rem; }
.page-hero-content h1 em { font-style: italic; color: var(--or); }
.page-hero-content p { color: rgba(255,255,255,.62); font-size: .83rem; line-height: 1.8; max-width: 520px; }

/* ══════════════════════════════════════════════════════
   INTRO 2 COLONNES
══════════════════════════════════════════════════════ */
.intro-2col { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.intro-photo-col { background-size: cover; background-position: center; min-height: 440px; }
.intro-text-col { padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; background: var(--blanc); }
.intro-text-col p { font-size: .8rem; color: var(--gris); line-height: 1.95; margin-bottom: 1rem; }
.intro-text-col .btn-wrap { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ══════════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════════ */
.services-wrap { background: var(--creme); padding: 7rem 3rem; }
.services-header { text-align: center; max-width: 520px; margin: 0 auto 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1150px; margin: 0 auto; }
.service-item { background: var(--blanc); padding: 2.6rem 2.2rem; border-bottom: 2px solid transparent; transition: border-color .3s; }
.service-item:hover { border-color: var(--or); }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: rgba(27,67,50,.06); font-weight: 300; display: block; line-height: 1; margin-bottom: .2rem; }
.svc-nom { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--vert); margin-bottom: .6rem; }
.svc-desc { font-size: .74rem; color: var(--gris); line-height: 1.75; }

/* ══════════════════════════════════════════════════════
   POURQUOI NOUS
══════════════════════════════════════════════════════ */
.why-wrap { background: var(--beige); padding: 7rem 3rem; }
.why-inner { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.why-list { list-style: none; }
.why-item { display: flex; gap: 1.6rem; padding: 1.6rem 0; border-bottom: 1px solid rgba(27,67,50,.1); }
.why-item:first-child { border-top: 1px solid rgba(27,67,50,.1); }
.why-n { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--or); font-style: italic; flex-shrink: 0; }
.why-t strong { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--vert); margin-bottom: .35rem; }
.why-t p { font-size: .74rem; color: var(--gris); line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   CE QUI EST INCLUS (mariage)
══════════════════════════════════════════════════════ */
.inclus-wrap { background: var(--creme); padding: 7rem 3rem; }
.inclus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; max-width: 920px; margin: 4rem auto 0; }
.inclus-item { background: var(--blanc); padding: 2.8rem; border-left: 3px solid transparent; transition: border-color .3s; }
.inclus-item:hover { border-color: var(--or); }
.inclus-bar { display: block; width: 26px; height: 1px; background: var(--or); margin-bottom: 1rem; }
.inclus-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--vert); margin-bottom: .6rem; }
.inclus-item p { font-size: .74rem; color: var(--gris); line-height: 1.75; }

/* ══════════════════════════════════════════════════════
   PROCESSUS (mariage)
══════════════════════════════════════════════════════ */
.process-wrap { background: var(--blanc); padding: 7rem 3rem; text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 950px; margin: 3.5rem auto 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 1.9rem; left: 12%; right: 12%; height: 1px; background: linear-gradient(to right, transparent, rgba(201,164,98,.3), transparent); }
.proc-step { padding: 0 .8rem; }
.proc-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--or); font-style: italic; display: block; }
.proc-titre { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--vert); margin: .4rem 0; }
.proc-desc { font-size: .73rem; color: var(--gris); line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   GALERIE 3 (mariage / maison martin)
══════════════════════════════════════════════════════ */
.galerie-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.galerie-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; }
.gal3-item { aspect-ratio: 4/3; background-size: cover; background-position: center; overflow: hidden; position: relative; }
.gal3-item::after { content: ''; position: absolute; inset: 0; background: rgba(27,67,50,0); transition: background .3s; }
.gal3-item:hover::after { background: rgba(27,67,50,.22); }

/* ══════════════════════════════════════════════════════
   MENUS PDF
══════════════════════════════════════════════════════ */
#menus-section {
  background: linear-gradient(160deg, #0d2b1e 0%, var(--vert) 40%, #1a3d2c 100%);
  padding: 7rem 3rem; position: relative;
}
#menus-section::before {
  content: ''; position: absolute; inset: 0; opacity: .04;
  background-image: radial-gradient(var(--or) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.menus-header { text-align: center; max-width: 520px; margin: 0 auto 3.5rem; }
.menus-header p { color: rgba(255,255,255,.58); font-size: .8rem; line-height: 1.8; margin-top: .7rem; }
.menus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1050px; margin: 0 auto; }
.menu-card { background: rgba(255,255,255,.04); border: 1px solid rgba(201,164,98,.16); padding: 2.8rem 2.2rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; transition: background .3s, border-color .3s; }
.menu-card:hover { background: rgba(201,164,98,.07); border-color: rgba(201,164,98,.42); }
.menu-icon { width: 48px; height: 62px; border: 1px solid rgba(201,164,98,.35); display: flex; align-items: center; justify-content: center; position: relative; }
.menu-icon::after { content: ''; position: absolute; top: -1px; right: -1px; border-style: solid; border-width: 0 13px 13px 0; border-color: transparent var(--vert) transparent transparent; }
.menu-icon svg { width: 20px; opacity: .65; }
.menu-type { font-size: .56rem; letter-spacing: .35em; text-transform: uppercase; color: var(--or); }
.menu-nom { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: var(--blanc); line-height: 1.15; }
.menu-desc { font-size: .72rem; color: rgba(255,255,255,.48); line-height: 1.7; }
.menu-btn {
  display: inline-flex; align-items: center; gap: .45rem; color: var(--or);
  border: 1px solid rgba(201,164,98,.45); padding: .55rem 1.3rem;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; transition: all .2s; font-family: 'Montserrat', sans-serif; margin-top: .4rem;
  background: transparent; cursor: pointer;
}
.menu-btn:hover { background: var(--or); color: var(--vert); border-color: var(--or); }
.menu-btn svg { width: 11px; }

/* ══════════════════════════════════════════════════════
   VISITE 3D
══════════════════════════════════════════════════════ */
.visite3d-wrap { background: var(--beige); padding: 6rem 3rem; text-align: center; }
.visite3d-wrap p { font-size: .8rem; color: var(--gris); line-height: 1.85; max-width: 480px; margin: 0 auto 2.2rem; }

/* ══════════════════════════════════════════════════════
   CTA PAGE (bas de chaque page interne)
══════════════════════════════════════════════════════ */
.cta-page { background: var(--vert); padding: 7rem 3rem; text-align: center; position: relative; overflow: hidden; }
.cta-page::before { content: ''; position: absolute; inset: 0; opacity: .04; background-image: radial-gradient(var(--or) 1px, transparent 1px); background-size: 24px 24px; }
.cta-page > * { position: relative; z-index: 1; }
.cta-page h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3.5vw,3.2rem); font-weight: 300; color: var(--blanc); margin-bottom: .7rem; line-height: 1.15; }
.cta-page h2 em { font-style: italic; color: var(--or); }
.cta-page p { color: rgba(255,255,255,.52); font-size: .8rem; margin-bottom: 2.5rem; }
.cta-page .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════ */
.lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(27,67,50,.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 88vw; max-height: 88vh; object-fit: contain; border: 1px solid rgba(201,164,98,.2); }
.lightbox-close { position: absolute; top: 2rem; right: 2.5rem; background: none; border: none; color: rgba(255,255,255,.55); font-size: 2rem; cursor: pointer; line-height: 1; transition: color .2s; }
.lightbox-close:hover { color: var(--or); }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(201,164,98,.12); border: 1px solid rgba(201,164,98,.28); color: var(--or); font-size: 1.5rem; padding: .7rem .95rem; cursor: pointer; transition: background .2s; line-height: 1; }
.lb-prev { left: 1.5rem; } .lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(201,164,98,.28); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer {
  background: var(--texte); padding: 4rem 3rem;
  display: flex; align-items: flex-start; justify-content: space-between;
  border-top: 1px solid rgba(201,164,98,.15); gap: 2rem; flex-wrap: wrap;
}
.footer-logo { height: 180px; margin-top: .2rem; }
.footer-menus { display: flex; flex-direction: column; gap: .55rem; }
.footer-menu-title { font-size: .55rem; letter-spacing: .35em; text-transform: uppercase; color: var(--or); margin-bottom: .2rem; }
.footer-menu-link {
  font-size: .62rem; color: rgba(255,255,255,.55); text-decoration: none;
  letter-spacing: .06em; transition: color .2s; display: flex; align-items: center; gap: .4rem;
}
.footer-menu-link::before { content: '↗'; font-size: .6rem; color: rgba(201,164,98,.4); }
.footer-menu-link:hover { color: var(--or); }
.footer-r { display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; }
.footer-copy { font-size: .58rem; color: rgba(255,255,255,.28); letter-spacing: .1em; }
.footer-insta { font-size: .58rem; color: var(--or); letter-spacing: .12em; text-decoration: none; }
.footer-insta:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   ANIMATIONS SCROLL
══════════════════════════════════════════════════════ */
.anim-item {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.anim-item.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .offres-grid { grid-template-columns: 1fr 1fr; }
  .reels-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .galerie-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .offres-grid, .menus-grid, .services-grid,
  .intro-2col, .why-inner, .inclus-grid,
  .type-selector { grid-template-columns: 1fr; }

  .cf-grid-2 { grid-template-columns: 1fr; }
  .contact-form-inner { padding: 2.8rem 2rem; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .reels-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .page-hero-content { padding: 4rem 2rem 3rem; }
  .intro-text-col { padding: 4rem 2rem; }
  .offre-card { height: 460px; }
  .galerie-3, .galerie-5 { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  #strip { gap: 2rem; }
  .strip-sep { display: none; }
  .mm-teaser-photos { display: none; }
  .mm-teaser-content { padding: 4rem 2rem; max-width: 100%; }
  footer { flex-direction: column; align-items: flex-start; }
  .footer-r { align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .offres-grid { grid-template-columns: 1fr; }
  .galerie-3, .galerie-5 { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
