/* HERO-IMMERSIF */
.hero-immersif {
  position: relative;
  min-height: clamp(560px, 88vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 6vw, 72px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
  margin-top: 0;
}
.hero-immersif__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-immersif__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-immersif::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 28, 22, .08) 0%, rgba(20, 28, 22, .35) 45%, rgba(20, 28, 22, .80) 100%);
}
.hero-immersif .container {
  position: relative;
  z-index: 2;
}
.hero-immersif__inner {
  max-width: 780px;
  color: #fff;
}
.hero-immersif .eyebrow {
  color: #E9DDC1;
}
.hero-immersif .eyebrow::before { background: #E9DDC1; }
.hero-immersif__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.04;
  color: #fff;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.hero-immersif__title em {
  color: #DDC97A;
  font-style: italic;
  font-weight: 500;
}
.hero-immersif__sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,.92);
  margin: 0 0 26px;
  max-width: 52ch;
  line-height: 1.55;
}
.hero-immersif__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-immersif__cta .btn { width: 100%; }
.hero-immersif__cta .btn-ghost-light:hover { color: var(--surface-deep); }
.hero-immersif .rating-badge { margin-bottom: 22px; }
.hero-chips {
  margin: 0 0 22px;
}
.hero-chips .chip {
  background: rgba(255,255,255,.14);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
}

@media (min-width: 768px) {
  .hero-immersif__cta { flex-direction: row; flex-wrap: wrap; }
  .hero-immersif__cta .btn { width: auto; }
}

.hero-photo-tag {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 2;
  background: rgba(0,0,0,.42);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
@media (max-width: 640px) { .hero-photo-tag { display: none; } }

/* AVIS section (COMP-2 preuve d'abord) */
.avis-section {
  background: var(--bg-alt);
  padding: 64px 0 76px;
}
@media (min-width: 768px) {
  .avis-section { padding: 96px 0 110px; }
}
.avis-rows {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
.avis-rows__item {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.avis-rows__item:last-child {
  border-bottom: 1px solid var(--border);
}
.avis-rows__item blockquote {
  margin: 0 0 12px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.4;
  color: var(--text);
  position: relative;
  padding-left: 20px;
}
.avis-rows__item blockquote::before {
  content: '\201C';
  position: absolute;
  left: -2px;
  top: -6px;
  font-size: 2.4rem;
  color: var(--accent);
  font-family: var(--ff-display);
  line-height: 1;
}
.avis-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.avis-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avis-author__name {
  font-weight: 500;
  font-size: .95rem;
}
.avis-author__date {
  color: var(--text-mute);
  font-size: .82rem;
}
.avis-stars {
  display: inline-flex;
  gap: 2px;
  color: #E4B23F;
}
.avis-stars svg { width: 14px; height: 14px; }
.avis-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--accent);
  font-weight: 500;
  font-size: .92rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(58, 74, 64, .35);
}
.avis-link:hover { text-decoration-color: var(--accent); }

/* SERVICES grid-asym (LAY-6) */
.services-section { background: var(--bg); }
.svc-asym {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.svc-asym__card { grid-column: span 3; }
.svc-asym__card--wide { grid-column: span 3; }
.svc-asym__card--lead { grid-column: span 6; }
@media (min-width: 1024px) {
  .svc-asym__card { grid-column: span 2; }
  .svc-asym__card--wide { grid-column: span 3; }
  .svc-asym__card--lead { grid-column: span 4; }
}
@media (max-width: 768px) {
  .svc-asym {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .svc-asym__card,
  .svc-asym__card--wide,
  .svc-asym__card--lead { grid-column: 1 / -1; }
}
.svc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-num {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.05rem;
  margin-left: auto;
}
.c-asym h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.2;
}
.c-asym p {
  color: var(--text-2);
  font-size: .95rem;
  margin: 0 0 12px;
  line-height: 1.55;
}
.c-asym ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-asym ul li {
  position: relative;
  padding-left: 14px;
  font-size: .9rem;
  color: var(--text-2);
}
.c-asym ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.c-asym--lead ul li::before { background: var(--accent-on-dark); }
.c-asym .svc-cta {
  margin-top: auto;
  padding-top: 16px;
}
.c-asym .svc-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* A-PROPOS */
.about-section {
  background: var(--bg-alt);
  padding: 64px 0;
}
@media (min-width: 768px) { .about-section { padding: 100px 0; } }
.about-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-cols { grid-template-columns: 1.05fr .95fr; gap: 64px; }
}
.about-text h2 { margin-bottom: 18px; }
.about-text .drop-cap::first-letter {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 3.4rem;
  float: left;
  line-height: .9;
  padding: 4px 10px 0 0;
  color: var(--accent);
}
.about-text p {
  font-size: 1.02rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0 0 14px;
}
.about-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 560px) {
  .about-points { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .94rem;
  color: var(--text);
}
.about-points svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 22px 4px 22px 4px;
  overflow: hidden;
  background: var(--surface-2);
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-media .photo-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,.92);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  backdrop-filter: blur(6px);
}

/* REALISATIONS - grid-feat */
.realisations-section { background: var(--bg); }
.gal-feat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
  margin-top: 24px;
}
.gal-feat figure {
  cursor: zoom-in;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}
.gal-feat figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
  transition: transform .5s ease;
}
.gal-feat figure:hover img { transform: scale(1.04); }
.gal-feat__big {
  grid-column: span 2;
  grid-row: span 2;
}
.gal-feat__big img { aspect-ratio: auto; }
@media (max-width: 560px) {
  .gal-feat { grid-template-columns: repeat(2, 1fr); }
  .gal-feat__big { grid-column: span 2; grid-row: span 1; }
  .gal-feat__big img { aspect-ratio: 16/10; }
}
.real-cta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.real-cta-line p { margin: 0; color: var(--text-2); font-size: .98rem; }

/* STATS strip */
.stats-section {
  background: var(--bg-alt);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.stat-item {
  padding: 14px 8px;
  border-top: 1px solid var(--border);
}
@media (min-width: 640px) {
  .stat-item { border-top: 0; border-left: 1px solid var(--border); }
  .stat-item:first-child { border-left: 0; }
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--accent);
  line-height: 1;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
}

/* FAQ accordion */
.faq-section { background: var(--bg); }
.faq-list {
  margin: 24px 0 0;
  padding: 0;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item dt { margin: 0; }
.faq-trigger {
  width: 100%;
  background: none;
  border: 0;
  padding: 22px 0;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  cursor: pointer;
  font-weight: 500;
}
.faq-trigger:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
  border-radius: 50%;
  background: var(--accent-soft);
}
.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.faq-chevron::before { width: 12px; height: 1.5px; }
.faq-chevron::after { width: 1.5px; height: 12px; }
.faq-trigger[aria-expanded="true"] .faq-chevron::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer dd, .faq-answer { margin: 0; }
.faq-answer {
  padding: 0 0 22px;
  color: var(--text-2);
  font-size: .98rem;
  line-height: 1.65;
  max-width: 64ch;
}
.faq-answer p { margin: 0; }

/* ZONE + carte */
.zone-section { background: var(--bg-alt); }
.zone-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 28px;
}
@media (min-width: 900px) {
  .zone-cols { grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
}
.zone-list {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zone-list li {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .88rem;
  color: var(--text);
}
.dispo-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: .94rem;
  margin: 6px 0 22px;
  border: 1px solid var(--border);
}
.dispo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5BB36A;
  position: relative;
}
.dispo-dot.is-closed { background: #C75A4A; }
.dispo-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: .5;
  animation: pulse 2s ease-out infinite;
}
.dispo-dot.is-closed::after { animation: none; opacity: 0; }
@keyframes pulse {
  0% { transform: scale(.6); opacity: .55; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .dispo-dot::after { animation: none; opacity: 0; }
}

.horaires-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 18px;
  margin: 0;
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 6px 16px;
  border: 1px solid var(--border);
}
.horaires-table > div {
  display: contents;
}
.horaires-table dt,
.horaires-table dd {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: .95rem;
}
.horaires-table dt:first-of-type,
.horaires-table dd:first-of-type { border-top: 0; }
.horaires-table dt { font-weight: 500; color: var(--text); }
.horaires-table dd { color: var(--text-2); text-align: right; }
.horaires-table .is-today {
  color: var(--accent);
  font-weight: 600;
}
.horaires-table .is-closed { color: var(--text-mute); }

.map-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.map-wrapper iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}
@media (min-width: 900px) { .map-wrapper iframe { height: 460px; } }

/* CONTACT */
.contact-section {
  background: var(--surface-deep);
  color: var(--text-on-dark);
  padding: 72px 0 80px;
}
@media (min-width: 768px) { .contact-section { padding: 104px 0 112px; } }
.contact-section h2 { color: var(--text-on-dark); }
.contact-section h2 em { color: var(--accent-on-dark); }
.contact-section .eyebrow { color: var(--accent-on-dark); }
.contact-section .eyebrow::before { background: var(--accent-on-dark); }
.contact-section .sec-head p { color: var(--text-on-dark-2); }
.contact-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .contact-cols { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-on-dark);
}
.contact-row a { color: var(--text-on-dark); text-decoration: none; }
.contact-row a:hover { color: var(--accent-on-dark); }
.contact-row__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: rgba(184, 201, 179, .16);
  color: var(--accent-on-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-row__icon svg { width: 20px; height: 20px; }
.contact-row__body { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.contact-row__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-on-dark-2);
  margin-bottom: 3px;
}
.contact-row__value {
  font-family: var(--ff-display);
  font-size: 1.06rem;
  color: var(--text-on-dark);
  word-break: break-word;
}
.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-ctas .btn { width: 100%; }
@media (min-width: 768px) {
  .contact-ctas { flex-direction: row; flex-wrap: wrap; }
  .contact-ctas .btn { width: auto; flex: 1; min-width: 200px; }
}
