/* HERO-GRILLE-7-5 */
.hero {
  padding: calc(var(--header-h-mobile) + 24px) 0 56px;
  position: relative;
}
.hero-grid75 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 900px) {
  .hero { padding: calc(var(--header-h) + 28px) 0 100px; }
  .hero-grid75 {
    grid-template-columns: 7fr 5fr;
    gap: clamp(32px, 4vw, 64px);
    padding: 0 40px;
  }
}
.hero-text { min-width: 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-size: clamp(2.3rem, 5.8vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-2);
  margin: 0 0 28px;
  max-width: 50ch;
  line-height: 1.6;
}
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-usps .chip {
  font-size: 0.85rem;
  padding: 6px 14px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.hero-cta .btn { width: 100%; }
@media (min-width: 600px) {
  .hero-cta { flex-direction: row; flex-wrap: wrap; width: auto; }
  .hero-cta .btn { width: auto; }
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: var(--text-mute);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta svg { width: 14px; height: 14px; color: var(--accent); }

.hero-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  order: -1;
  box-shadow: 0 20px 50px rgba(46, 40, 32, 0.18);
}
@media (min-width: 900px) {
  .hero-media {
    aspect-ratio: 4 / 5;
    order: 0;
  }
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.hero:hover .hero-media img { transform: scale(1.03); }
.hero-media__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-soft);
}
.hero-media__badge strong {
  color: var(--accent);
  font-weight: 700;
}

/* SERVICES */
.services { background: var(--bg-alt); }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1000px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}

/* REALISATIONS - galerie masonry */
.realisations { background: var(--bg); }
.gal-masonry {
  column-count: 1;
  column-gap: 14px;
}
@media (min-width: 600px) {
  .gal-masonry { column-count: 2; }
}
@media (min-width: 900px) {
  .gal-masonry { column-count: 3; }
}
.gal-item {
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--bg-alt);
}
.gal-item img {
  width: 100%;
  display: block;
  transition: transform .6s ease;
}
.gal-item:hover img { transform: scale(1.04); }
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(46, 40, 32, 0.35) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gal-item:hover::after { opacity: 1; }

.gal-note {
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--text-mute);
  font-style: italic;
}

/* STATS */
.stats { background: var(--surface-deep); color: var(--text-on-dark); padding: 56px 0; }
.stats :where(h2) { color: var(--text-on-dark); }
.stats-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) {
  .stats-strip { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.stat-item {
  text-align: left;
  position: relative;
  padding-left: 18px;
}
.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--accent-2);
}
.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  line-height: 1;
  color: var(--accent-soft);
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--text-on-dark) 80%, transparent);
  line-height: 1.4;
}

/* APROPOS */
.apropos { background: var(--bg); }
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .apropos-grid { grid-template-columns: 5fr 6fr; gap: 60px; }
}
.apropos-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.apropos-media img { width: 100%; height: 100%; object-fit: cover; }
.apropos-media__stamp {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  padding: 14px 22px;
  border-radius: var(--r-md);
  box-shadow: 0 8px 22px rgba(46, 40, 32, 0.2);
  line-height: 1.2;
  max-width: 200px;
}
.apropos-media__stamp small {
  display: block;
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 2px;
  font-weight: 600;
}
.apropos-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.apropos-text p { color: var(--text-2); font-size: 1.05rem; line-height: 1.7; }
.apropos-text p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 3.4em;
  color: var(--accent);
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  font-weight: 500;
}
.apropos-sig {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
}

/* FAQ */
.faq { background: var(--bg-alt); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text);
  font-weight: 500;
}
.faq-chevron {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
}
.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent);
  transition: transform .3s ease;
}
.faq-chevron::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-chevron::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-trigger[aria-expanded="true"] .faq-chevron::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer {
  padding: 0 4px 22px;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 60ch;
}
.faq-answer p { margin: 0; }

/* ZONE */
.zone { background: var(--bg); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .zone-grid { grid-template-columns: 1fr 1.1fr; gap: 50px; }
}
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 36px;
}
.zone-chips .chip {
  background: var(--surface);
  border: 1px solid var(--accent-soft);
}
.horaires-block h3 {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  font-weight: 700;
}
.horaires-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-ui);
  font-size: 0.97rem;
}
.horaires-table tr {
  border-bottom: 1px solid var(--border-soft);
}
.horaires-table td {
  padding: 11px 0;
  color: var(--text);
}
.horaires-table td:first-child { color: var(--text-2); }
.horaires-table tr.is-today td {
  color: var(--accent);
  font-weight: 700;
}
.horaires-table tr.is-closed td:last-child {
  color: var(--text-mute);
}
.dispo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
}
.dispo-pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}
.dispo-pill.is-closed .dot {
  background: var(--accent-2);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-2) 22%, transparent);
}
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-alt);
  position: relative;
  padding-top: 70%;
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 900px) {
  .map-wrap { padding-top: 100%; }
}

/* CONTACT */
.contact { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  min-width: 0;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 56px; }
}
.contact-info { min-width: 0; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  color: var(--text);
  transition: border-color .2s ease, transform .2s ease;
}
.contact-channel:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  color: var(--text);
}
.contact-channel .ic {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-channel .ic svg { width: 20px; height: 20px; }
.contact-channel--wa .ic {
  background: color-mix(in srgb, var(--wa-green) 15%, var(--bg));
  color: var(--wa-green);
}
.contact-channel strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.2;
}
.contact-channel small {
  display: block;
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-top: 2px;
}
.contact-form { background: var(--surface); padding: 24px; border-radius: var(--r-lg); border: 1px solid var(--border-soft); min-width: 0; overflow: hidden; }
.contact-form h3 { margin-top: 0; font-size: 1.25rem; }
.contact-form p { color: var(--text-2); font-size: 0.95rem; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .contact-form .form-row { grid-template-columns: 1fr 1fr; }
}
.form-success {
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  border-radius: var(--r-md);
  padding: 14px;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
