/* HERO — HERO-EDITORIAL-CENTRE (LAY-3 / Risograph) */
.hero {
  padding: 0;
  position: relative;
}
.hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 8vw, 110px) 24px clamp(28px, 4vw, 48px);
}
.hero-eyebrow {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1.04;
  color: var(--text);
  font-weight: 500;
  max-width: 14ch;
  margin: 0 auto;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: .28em;
  background: color-mix(in srgb, var(--accent-2) 38%, transparent);
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--text-2);
  margin: 22px auto 28px;
  max-width: 58ch;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  max-width: 360px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; max-width: none; }
  .hero-cta .btn { min-width: 200px; }
}
.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-band {
  width: 100%;
  max-width: 1280px;
  margin: clamp(28px, 5vw, 56px) auto 0;
  padding: 0 24px;
}
.hero-band-frame {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--text);
  box-shadow: 8px 8px 0 var(--accent);
  position: relative;
}
.hero-band-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .hero-band-frame { aspect-ratio: 16/11; box-shadow: 5px 5px 0 var(--accent); }
}

/* REALISATIONS (apres hero, COMP-5) */
.realisations { background: var(--bg-alt); padding: 56px 0; }
@media (min-width: 768px) { .realisations { padding: 90px 0; } }
.section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 6px;
}
.section-head p {
  max-width: 56ch;
  margin: 16px auto 0;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.gal-item {
  position: relative;
  border: 1.5px solid var(--text);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--accent);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  cursor: zoom-in;
  background: var(--surface);
  aspect-ratio: 4/3;
}
.gal-item:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--accent); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-base); }
.gal-item:hover img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) {
  .gal-item, .gal-item img { transition: none; }
  .gal-item:hover { transform: none; box-shadow: 4px 4px 0 var(--accent); }
  .gal-item:hover img { transform: none; }
}
.gal-item-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: color-mix(in srgb, var(--text) 92%, transparent);
  color: color-mix(in srgb, var(--bg) 95%, transparent);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--ff-ui);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
}

/* SERVICES (grid-3) */
.services { padding: 56px 0; }
@media (min-width: 768px) { .services { padding: 90px 0; } }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

/* AVIS (cards) */
.avis { background: var(--bg-alt); padding: 56px 0; }
@media (min-width: 768px) { .avis { padding: 90px 0; } }
.avis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) { .avis-grid { grid-template-columns: repeat(3, 1fr); } }
.avis-card {
  background: var(--surface);
  border: 1.5px solid var(--text);
  border-radius: var(--r-md);
  padding: 26px 22px;
  box-shadow: 5px 5px 0 var(--accent);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.avis-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .avis-card { transition: none; }
  .avis-card:hover { transform: none; box-shadow: 5px 5px 0 var(--accent); }
}
.avis-card blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}
.avis-card blockquote::before {
  content: "“";
  position: absolute;
  left: -4px; top: -14px;
  font-size: 3rem;
  color: var(--accent);
  font-family: var(--ff-display);
  line-height: 1;
}
.avis-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: .85rem;
  color: var(--text-2);
  flex-wrap: wrap;
  margin-top: auto;
}
.avis-author { display: flex; flex-direction: column; gap: 2px; }
.avis-author strong { font-family: var(--ff-display); font-style: normal; color: var(--text); font-weight: 600; font-size: .98rem; }
.avis-author small { color: var(--text-mute); }
.badge-google { display: inline-flex; align-items: center; gap: 5px; font-size: .74rem; color: var(--text-mute); }
.badge-google svg { width: 13px; height: 13px; }
.avis-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 28px auto 0;
  font-family: var(--ff-ui);
  color: var(--accent);
  font-size: .94rem;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
}
.avis-all-link:hover { color: var(--text); border-color: var(--text); }

/* STATS strip */
.stats-strip { padding: 28px 0; background: var(--text); color: var(--bg); }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 8px;
  border-right: 1px solid color-mix(in srgb, var(--bg) 14%, transparent);
}
@media (max-width: 639px) {
  .stat-item { border-right: 0; border-bottom: 1px solid color-mix(in srgb, var(--bg) 14%, transparent); padding-bottom: 18px; }
  .stat-item:last-child { border-bottom: 0; }
}
@media (min-width: 640px) {
  .stat-item:last-child { border-right: 0; }
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  color: color-mix(in srgb, var(--bg) 96%, transparent);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.01em;
}
.stat-number em { color: color-mix(in srgb, var(--accent) 50%, var(--bg)); font-style: italic; }
.stat-label {
  font-family: var(--ff-ui);
  font-size: .76rem;
  color: color-mix(in srgb, var(--bg) 65%, transparent);
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-top: 4px;
}

/* A PROPOS (entre avis et stats — apparait apres realisations) */
.apropos { padding: 56px 0; }
@media (min-width: 768px) { .apropos { padding: 90px 0; } }
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .apropos-grid { grid-template-columns: 1fr 1.1fr; gap: 60px; } }
.apropos-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--text);
  box-shadow: 8px 8px 0 var(--accent);
}
.apropos-photo img { width: 100%; height: 100%; object-fit: cover; }
.apropos-content h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 18px;
}
.apropos-content p { font-size: 1rem; margin-bottom: 14px; line-height: 1.7; }
.apropos-content p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-size: 3.2em;
  float: left;
  line-height: 0.86;
  padding-right: 10px;
  padding-top: 8px;
  color: var(--accent);
  font-weight: 600;
}
.apropos-signature {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--text);
}
.apropos-signature::before {
  content: "";
  width: 36px;
  height: 1.5px;
  background: var(--accent);
}

/* FAQ */
.faq { padding: 56px 0; }
@media (min-width: 768px) { .faq { padding: 90px 0; } }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1.5px solid var(--text);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow var(--t-fast);
}
.faq-item:has(.faq-trigger[aria-expanded="true"]) {
  box-shadow: 5px 5px 0 var(--accent);
}
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  font-family: var(--ff-display);
  font-size: 1.08rem;
  color: var(--text);
  text-align: left;
  background: transparent;
}
.faq-chevron {
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  position: relative;
  transition: transform var(--t-base), background var(--t-fast);
}
.faq-chevron::before, .faq-chevron::after {
  content: "";
  position: absolute;
  background: var(--text);
}
.faq-chevron::before { width: 10px; height: 1.5px; }
.faq-chevron::after { width: 1.5px; height: 10px; transition: opacity var(--t-fast); }
.faq-trigger[aria-expanded="true"] .faq-chevron { background: var(--accent); border-color: var(--accent); }
.faq-trigger[aria-expanded="true"] .faq-chevron::before, .faq-trigger[aria-expanded="true"] .faq-chevron::after { background: var(--bg); }
.faq-trigger[aria-expanded="true"] .faq-chevron::after { opacity: 0; }
.faq-answer {
  padding: 0 22px 22px;
  color: var(--text-2);
  font-size: .96rem;
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.faq-answer p + p { margin-top: 8px; }

/* CONTACT + ZONE */
.contact { background: var(--bg-alt); padding: 56px 0 80px; }
@media (min-width: 768px) { .contact { padding: 90px 0 110px; } }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.05fr 1fr; gap: 50px; } }
.contact-info > * + * { margin-top: 16px; }
.contact-info h3 {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}
.contact-info p, .contact-info a { font-size: 1rem; color: var(--text-2); }
.contact-info a:hover { color: var(--accent); }
.contact-block {
  background: var(--surface);
  border: 1.5px solid var(--text);
  border-radius: var(--r-md);
  padding: 22px 22px;
  box-shadow: 5px 5px 0 var(--accent);
}
.contact-block + .contact-block { margin-top: 16px; }
.contact-row { display: flex; align-items: center; gap: 12px; min-width: 0; }
.contact-row svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); }
.contact-row .contact-row-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-row .contact-row-text strong { font-family: var(--ff-display); font-weight: 600; color: var(--text); font-size: 1.08rem; }
.contact-row .contact-row-text span { font-size: .9rem; color: var(--text-2); }

.horaires-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.horaires-table th, .horaires-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: .94rem;
}
.horaires-table th { font-family: var(--ff-ui); font-weight: 500; color: var(--text); width: 40%; text-transform: capitalize; }
.horaires-table td { color: var(--text-2); text-align: right; }
.horaires-table tr:last-child th, .horaires-table tr:last-child td { border-bottom: 0; }
.horaires-table tr.is-today th, .horaires-table tr.is-today td {
  color: var(--accent);
  font-weight: 600;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}
.horaires-table tr.is-today th { padding-left: 6px; }
.horaires-table tr.is-today td { padding-right: 6px; }
.horaires-table tr.is-closed td, .horaires-table tr.is-closed th { color: var(--text-mute); font-style: italic; }

.zone-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.map-wrapper {
  border: 1.5px solid var(--text);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--accent);
  background: var(--surface);
  height: 100%;
  min-height: 340px;
}
.map-wrapper iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
@media (max-width: 900px) { .map-wrapper { min-height: 280px; } .map-wrapper iframe { min-height: 280px; } }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(15, 10, 5, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  font-family: var(--ff-display);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }
.lb-close { top: 20px; right: 20px; font-size: 1.2rem; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lb-prev { left: 12px; width: 42px; height: 42px; }
  .lb-next { right: 12px; width: 42px; height: 42px; }
  .lb-close { top: 14px; right: 14px; width: 42px; height: 42px; }
}
