/* ==== HERO-GRILLE-7-5 ==== */
.hero-grid75 {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 90px) 20px clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid75 {
    grid-template-columns: 7fr 5fr;
    gap: clamp(28px, 4vw, 64px);
    padding: clamp(60px, 8vw, 110px) 40px clamp(36px, 5vw, 64px);
  }
}
.hero-grid75__eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-grid75__eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--accent);
}
.hero-grid75__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-grid75__title .accent-mark {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--accent);
}
.hero-grid75__title .accent-mark::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 5%;
  height: 24%;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  transform: skewX(-7deg);
  z-index: -1;
}
.hero-grid75__sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-2);
  margin: 0 0 22px;
  max-width: 48ch;
  line-height: 1.6;
}
.hero-grid75__usps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.hero-grid75__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
@media (min-width: 480px) { .hero-grid75__cta { flex-direction: row; flex-wrap: wrap; } }
.hero-grid75__cta .btn { width: 100%; }
@media (min-width: 480px) { .hero-grid75__cta .btn { width: auto; } }
.hero-grid75__media {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--text);
  box-shadow: var(--shadow-riso);
  position: relative;
}
.hero-grid75__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-grid75__media-tag {
  position: absolute;
  left: 14px; bottom: 14px;
  background: var(--bg);
  border: 1.5px solid var(--text);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
@media (max-width: 899px) {
  .hero-grid75__media { aspect-ratio: 16/11; order: -1; }
}

/* ==== STATS ==== */
.stats-strip {
  background: var(--surface-deep);
  color: #fff;
  padding: 42px 0;
}
.stats-strip :where(h1,h2,h3,h4,p,li,span,a,strong,small) { color: inherit; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}
@media (min-width: 700px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.stat-item { display: flex; flex-direction: column; gap: 6px; padding: 0 6px; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
}
.stat-num em { color: var(--accent-on-dark); font-style: italic; }
.stat-label {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #B8C8BB;
}

/* ==== SERVICES (LAY-3 risograph) ==== */
.svc-section { background: transparent; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
  max-width: 720px;
}
.section-head h2 { font-weight: 500; }
.section-head p { font-size: 1rem; color: var(--text-2); max-width: 56ch; }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.svc-card { padding: 24px 22px 22px; }
.svc-card__num {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: block;
}
.svc-card__icon {
  width: 38px; height: 38px;
  color: var(--accent);
  margin-bottom: 14px;
}
.svc-card__icon svg { width: 100%; height: 100%; }
.svc-card__title {
  font-family: var(--ff-display);
  font-size: 1.32rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.2;
}
.svc-card__text { font-size: 0.94rem; color: var(--text-2); line-height: 1.55; margin-bottom: 14px; }
.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0;
}
.svc-card__cta:hover { color: color-mix(in srgb, var(--accent) 80%, #000); }
.svc-card__cta::after {
  content: "→";
  transition: transform .2s ease;
}
.svc-card__cta:hover::after { transform: translateX(3px); }

.svc-card--lead {
  background: var(--surface-deep);
  border-color: var(--accent);
  box-shadow: 5px 5px 0 color-mix(in srgb, var(--accent) 70%, #000);
}
.svc-card--lead :where(.svc-card__title, .svc-card__text) { color: #fff; }
.svc-card--lead .svc-card__text { color: #DCE7DE; }
.svc-card--lead .svc-card__icon, .svc-card--lead .svc-card__num, .svc-card--lead .svc-card__cta { color: var(--accent-on-dark); }
.svc-card--lead .svc-card__cta:hover { color: #fff; }
.svc-card--lead:hover { box-shadow: 7px 7px 0 color-mix(in srgb, var(--accent) 70%, #000); }

/* ==== ENGAGEMENT ECOLOGIQUE (highlight band) ==== */
.eco-strip {
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  border-top: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}
.eco-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .eco-strip__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.eco-strip h2 { margin-bottom: 12px; }
.eco-strip p { margin-bottom: 18px; }
.eco-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.eco-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid var(--text);
  border-radius: var(--r-sm);
  box-shadow: 3px 3px 0 var(--accent);
}
.eco-list li svg { width: 28px; height: 28px; color: var(--accent); }
.eco-list strong { display: block; font-family: var(--ff-display); font-size: 1.05rem; line-height: 1.2; margin-bottom: 2px; }
.eco-list span { font-size: 0.86rem; color: var(--text-2); }

/* ==== A PROPOS ==== */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .apropos-grid { grid-template-columns: 5fr 6fr; gap: 56px; }
}
.apropos-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border: 1.5px solid var(--text);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-riso);
}
.apropos-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.apropos-content p {
  font-size: 1.02rem;
  line-height: 1.66;
  margin-bottom: 14px;
  color: var(--text-2);
}
.apropos-content p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
  font-size: 3.2rem;
  float: left;
  line-height: 0.95;
  padding: 6px 10px 0 0;
}
.apropos-content h2 { margin-bottom: 16px; }
.apropos-sign {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.05rem;
}
.apropos-sign::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
}

/* ==== GALERIE (LAY-3 grid) ==== */
.gallery-section { background: color-mix(in srgb, var(--text) 3%, var(--bg)); }
.gallery-section .section-head { margin-bottom: 28px; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gal-grid { grid-template-columns: 1fr; gap: 14px; } }
.gal-item {
  cursor: pointer;
  border: 1.5px solid var(--text);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 4px 4px 0 var(--accent);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
}
.gal-item:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--accent); }
@media (prefers-reduced-motion: reduce) { .gal-item, .gal-item:hover { transform: none; transition: none; } }
.gal-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.gal-item__tag {
  position: absolute;
  left: 10px; bottom: 10px;
  background: var(--bg);
  border: 1.2px solid var(--text);
  border-radius: 4px;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.gal-more {
  margin-top: 30px;
  text-align: center;
}

/* ==== AVIS (LAY-3 cards) ==== */
.avis-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .avis-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .avis-cards { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.avis-card {
  padding: 26px 24px 22px;
  position: relative;
}
.avis-card::before {
  content: "\201C";
  position: absolute;
  top: 10px; left: 18px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  color: color-mix(in srgb, var(--accent) 30%, transparent);
}
.avis-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 10px;
  margin-top: 18px;
  color: #D89B2A;
}
.avis-stars svg { width: 16px; height: 16px; fill: currentColor; }
.avis-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 18px;
}
.avis-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--text-2);
}
.avis-meta strong { color: var(--text); font-weight: 600; }
.avis-meta time { display: block; font-size: 0.78rem; color: var(--text-mute); margin-top: 1px; }
.avis-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  color: var(--text-mute);
}
.avis-badge svg { width: 14px; height: 14px; }
.avis-cta-row {
  margin-top: 30px;
  text-align: center;
}
.avis-cta-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--accent);
}
.avis-cta-row a::after { content: "↗"; }

/* ==== FAQ ==== */
.faq-section { background: transparent; }
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 880px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--text);
  border-radius: var(--r-sm);
  background: var(--bg);
  box-shadow: 4px 4px 0 var(--accent);
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  line-height: 1.3;
}
.faq-chevron {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 14%, var(--bg));
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.faq-chevron::before, .faq-chevron::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform .25s ease, opacity .25s ease;
}
.faq-chevron::before { width: 12px; height: 2px; }
.faq-chevron::after { width: 2px; height: 12px; }
.faq-trigger[aria-expanded="true"] .faq-chevron { background: var(--accent); }
.faq-trigger[aria-expanded="true"] .faq-chevron::before { background: #fff; }
.faq-trigger[aria-expanded="true"] .faq-chevron::after { background: #fff; opacity: 0; }
.faq-answer {
  padding: 0 22px 20px;
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-2);
}

/* ==== ZONE + carte ==== */
.zone-section { background: transparent; }
.zone-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .zone-cols { grid-template-columns: 5fr 6fr; gap: 48px; } }
.zone-info h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 18px 0 12px;
  color: var(--text);
}
.zone-info h3:first-child { margin-top: 0; }
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.horaires-table {
  border: 1.5px solid var(--text);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 4px 4px 0 var(--accent);
}
.horaires-table table { width: 100%; border-collapse: collapse; }
.horaires-table tr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.horaires-table tr:last-child { border-bottom: 0; }
.horaires-table th, .horaires-table td {
  padding: 11px 16px;
  font-size: 0.92rem;
  text-align: left;
}
.horaires-table th {
  font-weight: 500;
  color: var(--text);
  text-transform: capitalize;
  font-family: var(--ff-body);
}
.horaires-table td { color: var(--text-2); text-align: right; }
.horaires-table tr.is-today { background: color-mix(in srgb, var(--accent) 10%, var(--bg)); }
.horaires-table tr.is-today th, .horaires-table tr.is-today td { color: var(--text); font-weight: 600; }
.horaires-table tr.is-closed td { color: var(--text-mute); font-style: italic; }
.map-wrapper {
  position: relative;
  width: 100%;
  border: 1.5px solid var(--text);
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-riso);
  aspect-ratio: 4/3;
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ==== CONTACT ==== */
.contact-section {
  background: var(--surface-deep);
  color: #fff;
}
.contact-section :where(h1,h2,h3,h4,p,li,span,a,strong,small) { color: inherit; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.contact-section .eyebrow { color: var(--accent-on-dark); }
.contact-section .eyebrow::before { background: var(--accent-on-dark); }
.contact-section h2 { color: #fff; font-weight: 500; }
.contact-tel {
  display: inline-flex;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.7rem, 4.2vw, 2.3rem);
  color: var(--accent-on-dark);
  margin: 18px 0 22px;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.contact-tel:hover { color: #fff; }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 26px; }
.contact-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  font-size: 0.96rem;
  color: #DCE7DE;
}
.contact-list li svg { width: 22px; height: 22px; color: var(--accent-on-dark); }
.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 480px) { .contact-cta { flex-direction: row; flex-wrap: wrap; } }
.contact-cta .btn { width: 100%; }
@media (min-width: 480px) { .contact-cta .btn { width: auto; } }
.contact-cta .btn--ghost {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.contact-cta .btn--ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.contact-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  padding: 24px 22px;
  backdrop-filter: blur(6px);
}
.contact-form h3 { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 16px; color: #fff; }
.contact-form label { color: #B8C8BB; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: rgba(255,255,255,0.95);
  border-color: transparent;
  color: var(--text);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--accent-on-dark);
  background: #fff;
}
.contact-form .btn { width: 100%; margin-top: 6px; }
.contact-form .form-feedback {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--accent-on-dark);
  min-height: 1.4em;
}

/* ==== Realisations.html ==== */
.real-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 8px;
}
.real-head .breadcrumb {
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.real-head .breadcrumb a { color: var(--text-2); }
.real-head .breadcrumb a:hover { color: var(--accent); }
.real-head h1 { margin-bottom: 14px; }
.real-head p { font-size: 1.04rem; color: var(--text-2); }

.gal-masonry { column-count: 1; column-gap: 14px; padding: 36px 0; }
@media (min-width: 600px) { .gal-masonry { column-count: 2; } }
@media (min-width: 1000px) { .gal-masonry { column-count: 3; } }
.gal-masonry .gal-item {
  margin: 0 0 14px;
  break-inside: avoid;
}
.gal-masonry .gal-item img { aspect-ratio: auto; height: auto; }

.real-cta-block {
  background: var(--surface-deep);
  color: #fff;
  text-align: center;
  padding: 56px 20px;
  border-radius: var(--r-md);
  margin: 40px 0 0;
}
.real-cta-block :where(h1,h2,h3,h4,p,li,span,a,strong,small) { color: inherit; }
.real-cta-block h2 { margin-bottom: 18px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.real-cta-block .real-cta-row { display: flex; flex-direction: column; gap: 12px; max-width: 380px; margin: 0 auto; }
@media (min-width: 480px) { .real-cta-block .real-cta-row { flex-direction: row; justify-content: center; max-width: none; } }
