/* ============================================================
   SECTIONS - Styles propres a chaque section
   Hero MEGA SOBRE avec photo + Stats + Avis row-sep + Services grid-asym
   + Galerie grid-feat + About + FAQ + Zone + Contact
   ============================================================ */

/* ============= HERO MEGA SOBRE ============= */
.hero {
  position: relative;
  padding: clamp(44px, 7vw, 100px) 20px clamp(56px, 7vw, 100px);
  background: var(--bg);
  overflow: hidden;
}
/* Texture grille fine TEX-4 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--text) 5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--text) 5%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
  opacity: .5;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 75%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 75%);
}
.hero-mega {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero-mega__text { min-width: 0; }
.hero-mega__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 8.5vw, 6.4rem);
  line-height: .96;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 1.5rem;
}
.hero-mega__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-mega__sub {
  font-family: var(--ff-body);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 1.75rem;
  max-width: 46ch;
}
.hero-mega__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.hero-mega__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  font-family: var(--ff-ui);
  font-size: .85rem;
  color: var(--text-2);
  align-items: center;
}
.hero-mega__meta-item {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.hero-mega__meta-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4FAE5C;
  box-shadow: 0 0 0 0 rgba(79, 174, 92, .6);
  animation: dot-pulse 2s infinite;
}
.dot-live.is-closed { background: #B33A3A; box-shadow: none; animation: none; }
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(79, 174, 92, .55); }
  70%  { box-shadow: 0 0 0 8px rgba(79, 174, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 174, 92, 0); }
}

.hero-mega__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px 22px 4px 22px;
}
.hero-mega__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.hero-mega__tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  padding: .5rem .85rem;
  font-family: var(--ff-ui);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.hero-mega__tag em { font-family: var(--ff-display); font-style: italic; color: var(--accent); text-transform: none; letter-spacing: 0; font-size: .9rem; }

/* ============= STATS STRIP ============= */
.stats-strip {
  padding: 36px 0 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat-item {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0; top: 12%;
  width: 1px; height: 76%;
  background: var(--border);
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  display: block;
  margin-bottom: .35rem;
}
.stat-number em {
  font-style: italic;
  color: var(--accent);
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-mute);
}

/* ============= AVIS - ROW SEP ============= */
.avis {
  background: var(--surface);
  padding: 72px 0;
}
.avis__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.avis__head h2 { margin: 0; max-width: 18ch; }
.avis__google {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--ff-ui);
  font-size: .92rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  padding-bottom: .35rem;
  transition: color .2s ease;
}
.avis__google:hover { color: var(--accent); }
.avis__google svg { width: 18px; height: 18px; }
.avis-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.avis-rows__item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: flex-start;
}
.avis-rows__meta {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.avis-rows__author {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
}
.avis-rows__date {
  font-family: var(--ff-ui);
  font-size: .8rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.avis-rows__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.4;
  font-style: italic;
  color: var(--text);
  margin: 0;
  position: relative;
  padding-left: 1.5rem;
}
.avis-rows__quote::before {
  content: "\201C";
  position: absolute;
  left: -.2rem; top: -.4rem;
  font-size: 3.5rem;
  font-family: var(--ff-display);
  color: var(--accent);
  line-height: 1;
  font-style: normal;
}

/* ============= SERVICES - GRID ASYM ============= */
.services {
  padding: 80px 0;
}
.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  align-items: flex-end;
}
.services__head h2 { margin: 0; max-width: 14ch; }
.services__intro {
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 38ch;
  margin: 0;
}
.svc-asym {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.6vw, 22px);
}
.svc-asym__card { grid-column: span 2; }
.svc-asym__card--wide { grid-column: span 3; }
.svc-asym__card--lead { grid-column: span 4; }

/* ============= REALISATIONS - GALERIE GRID-FEAT ============= */
.realisations {
  background: var(--surface);
  padding: 80px 0;
}
.realisations__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-end;
}
.realisations__head h2 { margin: 0; max-width: 18ch; }
.gal-feat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gal-feat__item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
  border-radius: 2px;
}
.gal-feat__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.gal-feat__item:hover img { transform: scale(1.06); }
.gal-feat__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.45));
  opacity: 0;
  transition: opacity .3s ease;
}
.gal-feat__item:hover::after { opacity: 1; }
.gal-feat__item--big { grid-column: span 2; grid-row: span 2; }

/* ============= ABOUT ============= */
.about {
  padding: 80px 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about__media {
  position: relative;
  width: 100%;
}
.about__media-frame {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-asym);
  position: relative;
}
.about__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__media-cap {
  position: absolute;
  bottom: -18px;
  right: -8px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: .65rem .9rem;
  font-family: var(--ff-ui);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-2);
}
.about__media-cap em {
  font-family: var(--ff-display);
  color: var(--accent);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}
.about__text { min-width: 0; }
.about__text h2 { margin-bottom: 1.25rem; max-width: 18ch; }
.about__text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 56ch;
}
.about__text p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-size: 3.6rem;
  float: left;
  line-height: .9;
  margin: .3rem .55rem 0 0;
  color: var(--accent);
  font-style: italic;
}
.about__signature {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.about__signature-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
}
.about__signature-role {
  font-family: var(--ff-ui);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
}

/* ============= FAQ ============= */
.faq {
  background: var(--bg);
  padding: 80px 0;
}
.faq__head {
  text-align: center;
  margin-bottom: 3rem;
}
.faq__head h2 { margin: 0 auto; max-width: 22ch; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-trigger {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0;
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text);
  cursor: pointer;
  transition: color .2s ease;
}
.faq-trigger:hover { color: var(--accent); }
.faq-chevron {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: transform .3s ease;
}
.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  background: var(--accent);
}
.faq-chevron::before {
  width: 14px; height: 1.5px;
}
.faq-chevron::after {
  width: 1.5px; height: 14px;
  transition: transform .3s ease;
}
.faq-trigger[aria-expanded="true"] .faq-chevron::after {
  transform: scaleY(0);
}
.faq-answer {
  padding: 0 0 1.5rem;
  font-size: .98rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 70ch;
}

/* ============= ZONE ============= */
.zone {
  background: var(--surface);
  padding: 80px 0;
}
.zone__head {
  margin-bottom: 2.5rem;
}
.zone__head h2 { margin-bottom: .75rem; max-width: 22ch; }
.zone__head p { color: var(--text-2); max-width: 56ch; margin: 0; }
.zone-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: stretch;
}
.zone-info { min-width: 0; }
.zone-info h3 {
  font-family: var(--ff-ui);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  margin: 0 0 1rem;
  font-weight: 500;
}
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0 0 2rem;
}
.zone-list .chip { background: var(--bg); }
.dispo-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.4rem 1.5rem;
  border-radius: var(--r-md);
  margin-bottom: 1.25rem;
}
.dispo-card__title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-ui);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin: 0 0 .85rem;
  font-weight: 500;
}
.dispo-card__row {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}
.dispo-card__row em { color: var(--accent); font-style: italic; }
.dispo-card__hint {
  font-family: var(--ff-body);
  font-size: .86rem;
  color: var(--text-2);
  margin: .55rem 0 0;
}
.map-wrapper {
  position: relative;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--r-md);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* ============= CONTACT ============= */
.contact {
  padding: 80px 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: flex-start;
}
.contact__intro h2 { margin-bottom: 1.25rem; max-width: 16ch; }
.contact__intro p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 38ch;
  margin: 0 0 2rem;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}
.contact-direct a {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  transition: background .25s ease, transform .15s ease;
}
.contact-direct a:hover { background: var(--bg-alt); transform: translateX(3px); }
.contact-direct svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact-direct strong {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
}
.contact-direct small {
  display: block;
  font-family: var(--ff-ui);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-mute);
  margin-bottom: .15rem;
}

.contact__form {
  background: var(--bg-alt);
  padding: 2rem 1.75rem;
  border-radius: var(--r-md);
  min-width: 0;
}
.contact__form h3 {
  margin: 0 0 1.25rem;
  font-family: var(--ff-display);
  font-size: 1.4rem;
}

/* ============= REALISATIONS PAGE (page dediee) ============= */
.page-realisations {
  padding: 80px 0;
}
.page-realisations__head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.page-realisations__head h1 { margin-bottom: 1rem; }
.page-realisations__head p { color: var(--text-2); margin: 0 auto; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-ui);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 2rem;
}
.back-link:hover { color: var(--text); }
.gal-masonry {
  column-count: 3;
  column-gap: 14px;
}
.gal-masonry .gal-item {
  break-inside: avoid;
  margin: 0 0 14px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.gal-masonry img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}
.gal-masonry .gal-item:hover img { transform: scale(1.04); }
