/* ====== HERO MEGA-SOBRE ====== */
.hero-mega {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 100px) 24px clamp(48px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  position: relative;
}
.hero-mega__eyebrow {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--accent);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-mega__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero-mega__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 7.8vw, 6rem);
  line-height: .98;
  letter-spacing: -.01em;
  color: var(--text);
  font-weight: 500;
}
.hero-mega__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero-mega__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: var(--text-2);
  margin: 22px 0 28px;
  max-width: 46ch;
  line-height: 1.55;
}
.hero-mega__usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-mega__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-mega__media {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px 4px 14px 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 50px rgba(42,42,38,0.12);
}
.hero-mega__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-mega__media-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(243,239,231,0.92);
  backdrop-filter: blur(4px);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 900px) {
  .hero-mega {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: calc(var(--header-h-mobile) + 30px) 20px 48px;
  }
  .hero-mega__title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-mega__media { aspect-ratio: 16/11; order: -1; }
  .hero-mega__cta { flex-direction: column; width: 100%; }
  .hero-mega__cta .btn { width: 100%; }
}

/* ====== AVIS row-sep (LAY-6) ====== */
.avis-section { background: var(--bg-alt); }
.avis-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.avis-head h2 { max-width: 22ch; }
.avis-score {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  padding: 14px 22px;
  border-radius: 14px 4px 14px 4px;
  border: 1px solid var(--border);
}
.avis-score__num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1;
}
.avis-score__stars {
  display: inline-flex;
  gap: 2px;
  color: #C9A24B;
}
.avis-score__stars svg { width: 16px; height: 16px; }
.avis-score__label {
  font-family: var(--ff-ui);
  font-size: .8rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.avis-rows {
  display: flex;
  flex-direction: column;
}
.avis-row {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 40px;
  align-items: start;
}
.avis-row:last-child { border-bottom: 1px solid var(--border); }
.avis-row__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.avis-row__stars {
  display: inline-flex;
  gap: 2px;
  color: #C9A24B;
}
.avis-row__stars svg { width: 16px; height: 16px; }
.avis-row__author {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 500;
}
.avis-row__date {
  font-family: var(--ff-ui);
  font-size: .82rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.avis-row__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-ui);
  font-size: .78rem;
  color: var(--text-mute);
  margin-top: 4px;
}
.avis-row__badge svg { width: 14px; height: 14px; }
.avis-row__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  font-style: italic;
  color: var(--text);
  font-weight: 400;
}
.avis-foot {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .avis-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }
  .avis-row__quote { font-size: 1.3rem; }
}

/* ====== SERVICES grid-asym (LAY-6) ====== */
.services-section h2 { max-width: 22ch; margin-bottom: 16px; }
.services-intro { max-width: 56ch; margin-bottom: 48px; font-size: 1.05rem; }
.svc-asym {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.svc-asym__card { grid-column: span 3; }
.svc-asym__card--lead { grid-column: span 6; }
.svc-asym__card--wide { grid-column: span 6; }
@media (min-width: 901px) {
  .svc-asym__card { grid-column: span 2; }
  .svc-asym__card--lead { grid-column: span 4; }
  .svc-asym__card--wide { grid-column: span 4; }
}
.svc-card__num {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.svc-card__num::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.c-asym--lead .svc-card__num { color: #F3EFE7; }
.c-asym--lead .svc-card__num::after { background: #F3EFE7; }
.svc-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.45rem, 2.4vw, 1.7rem);
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.2;
}
.svc-card__desc {
  font-family: var(--ff-body);
  font-size: .98rem;
  line-height: 1.6;
  color: var(--text-2);
  flex-grow: 1;
}
.svc-card__list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.svc-card__list li {
  font-size: .85rem;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-card__list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.c-asym--lead .svc-card__list li { color: #DDD6C5; }
.c-asym--lead .svc-card__list li::before { background: #F3EFE7; }

/* ====== REALISATIONS grid-feat (LAY-6) ====== */
.real-section h2 { margin-bottom: 16px; }
.real-intro { max-width: 56ch; margin-bottom: 40px; }
.gal-feat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, 1fr);
  gap: 12px;
}
.gal-feat__item {
  overflow: hidden;
  border-radius: 12px 2px 12px 2px;
  cursor: pointer;
  position: relative;
  background: var(--bg-alt);
}
.gal-feat__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}
.gal-feat__item:hover img { transform: scale(1.04); }
.gal-feat__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,18,14,0.18) 100%);
  pointer-events: none;
}
.gal-feat__big {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 900px) {
  .gal-feat { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gal-feat__big { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 560px) {
  .gal-feat { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gal-feat__big { grid-column: span 2; grid-row: span 2; }
}

/* ====== APROPOS (insere apres realisations) ====== */
.about-section { background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.about-media {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px 22px 4px 22px;
  overflow: hidden;
  position: relative;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { margin-bottom: 18px; }
.about-content p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 14px; }
.about-content p strong { color: var(--text); font-weight: 600; }
.about-sign {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
}
.about-sign::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent);
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-media { aspect-ratio: 16/11; }
}

/* ====== STATS strip ====== */
.stats-section {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--accent);
  color: #F3EFE7;
}
.stats-section h2,
.stats-section p,
.stats-section span,
.stats-section li,
.stats-section :where(.eyebrow) { color: #F3EFE7; }
.stats-section .eyebrow::before { background: #F3EFE7; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}
.stat-item { text-align: center; padding: 14px 0; }
.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-style: italic;
  line-height: 1;
  margin-bottom: 8px;
  color: #F3EFE7;
}
.stat-label {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  color: rgba(243,239,231,0.78);
  display: block;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; gap: 18px; }
  .stat-item { border-top: 1px solid rgba(243,239,231,0.2); padding-top: 22px; }
  .stat-item:first-child { border-top: 0; padding-top: 0; }
}

/* ====== FAQ ====== */
.faq-section h2 { margin-bottom: 16px; max-width: 22ch; }
.faq-intro { max-width: 56ch; margin-bottom: 32px; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--text);
  text-align: left;
  font-weight: 500;
  transition: color var(--t-fast);
}
.faq-trigger:hover { color: var(--accent); }
.faq-chevron {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--t-med);
}
.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--accent);
  transform-origin: center;
}
.faq-chevron::before { transform: translate(-50%, -50%) rotate(0deg); }
.faq-chevron::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-trigger[aria-expanded="true"] .faq-chevron::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer {
  padding: 0 0 24px;
  max-width: 76ch;
}
.faq-answer p { font-size: 1rem; line-height: 1.7; }

/* ====== CONTACT ====== */
.contact-section { background: var(--surface-dark); color: #DDD6C5; padding: clamp(64px, 8vw, 110px) 0; }
.contact-section :where(h2, h3, p, li, span:not(.dot), a, small) { color: #DDD6C5; }
.contact-section h2 { color: #FBF8F2; max-width: 22ch; margin-bottom: 18px; }
.contact-section .eyebrow { color: #C9A24B; }
.contact-section .eyebrow::before { background: #C9A24B; }
.contact-section .lead { font-size: 1.05rem; max-width: 56ch; margin-bottom: 40px; color: #C8C0AB; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  min-width: 0;
}
.contact-grid > * { min-width: 0; }
.contact-channels { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.contact-channel {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center; /* PIEGE PROD #3 */
  text-decoration: none;
}
.contact-channel__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(243,239,231,0.08);
  display: grid;
  place-items: center;
  color: #C9A24B;
}
.contact-channel__icon svg { width: 22px; height: 22px; }
.contact-channel__label {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  color: #A39B86;
  display: block;
  margin-bottom: 4px;
}
.contact-channel__value {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: #FBF8F2;
  font-weight: 500;
}
.contact-zone {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.contact-zone h4 {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  color: #C9A24B;
  font-weight: 500;
  margin-bottom: 14px;
}
.contact-zone__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-zone__chip {
  padding: 6px 14px;
  background: rgba(243,239,231,0.07);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: .84rem;
  color: #DDD6C5;
}

.contact-form {
  background: rgba(243,239,231,0.05);
  border: 1px solid rgba(243,239,231,0.12);
  border-radius: 22px 4px 22px 4px;
  padding: 32px;
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 560px) { .contact-form { padding: 24px 22px; } }
.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select {
  background: rgba(20,18,14,0.45);
  border-color: rgba(243,239,231,0.15);
  color: #FBF8F2;
}
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder { color: rgba(221,214,197,0.5); }
.contact-form .field label { color: #C9A24B; }
.contact-form .btn-wa { width: 100%; }

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

/* ====== ZONE / HORAIRES (inseree dans contact) ====== */
.horaires-table {
  margin-top: 18px;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.horaires-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--ff-ui);
  font-size: .92rem;
}
.horaires-row.is-today {
  color: #C9A24B;
  font-weight: 500;
}
.horaires-row .day { color: #DDD6C5; }
.horaires-row .hours { color: #A39B86; }
.horaires-row.is-today .day,
.horaires-row.is-today .hours { color: #C9A24B; }
.horaires-row.is-closed .hours { color: #88806E; }

/* Map iframe */
.map-wrapper {
  margin-top: 20px;
  position: relative;
  width: 100%;
  padding-top: 60%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}
