/* ====================================================================
   HERO-GRILLE-7-5 — Grille editoriale 7:5 (PAY-14 impose)
   ==================================================================== */
.hero {
  padding: 28px 0 56px;
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.hero__text { display: flex; flex-direction: column; }
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 16px 0 0;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  position: relative;
  font-weight: 600;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.18em;
  background: color-mix(in srgb, var(--accent-2) 28%, transparent);
  z-index: -1;
  transform: skewX(-8deg);
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  color: var(--text-2);
  margin: 20px 0 12px;
  max-width: 46ch;
  line-height: 1.6;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  color: var(--text);
  margin-top: 14px;
  align-self: flex-start;
  transition: transform var(--t-fast);
}
.hero__rating:hover { transform: translateY(-1px); color: var(--text); }
.hero__rating strong { font-weight: 700; }
.hero__rating .stars { display: inline-flex; gap: 2px; }
.hero__rating .stars svg { width: 14px; height: 14px; fill: var(--accent-2); }
.hero__rating .g-logo { width: 14px; height: 14px; }

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
  width: 100%;
}
.hero__cta .btn { width: 100%; }

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  color: var(--text-2);
}
.hero__meta .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4DAA7B;
  position: relative;
}
.hero__meta .dot::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #4DAA7B;
  opacity: 0.35;
  animation: pulse 2.2s ease-in-out infinite;
}
.hero__meta.is-closed .dot { background: #C46A4A; }
.hero__meta.is-closed .dot::before { background: #C46A4A; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__meta .dot::before { animation: none; }
}

/* Hero media */
.hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: var(--r-lg);
  overflow: hidden;
  order: -1;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__media-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.84rem;
  color: #fff;
  background: rgba(20,30,22,0.55);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
}

@media (min-width: 880px) {
  .hero { padding: 48px 0 96px; }
  .hero__inner {
    grid-template-columns: 7fr 5fr;
    gap: clamp(32px, 4vw, 64px);
  }
  .hero__media { aspect-ratio: 4/5; order: 0; }
  .hero__cta { flex-direction: row; flex-wrap: wrap; width: auto; }
  .hero__cta .btn { width: auto; }
  .hero__title { font-size: clamp(2.6rem, 5vw, 4rem); margin-top: 22px; }
}

/* ====================================================================
   SERVICES — LAY-6 grid-asym (magazine asymetrique)
   ==================================================================== */
.services .svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.svc-card { position: relative; min-height: 200px; }
.svc-card .svc-num {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.svc-card h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  line-height: 1.18;
  margin-bottom: 10px;
  color: inherit;
}
.svc-card p {
  font-size: 0.96rem;
  line-height: 1.6;
}
.svc-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-2) 18%, transparent);
  color: var(--accent);
}
.c-asym--lead .svc-tag {
  background: rgba(255,255,255,0.12);
  color: var(--accent-on-dark);
}

@media (min-width: 720px) {
  .services .svc-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  .svc-card { grid-column: span 2; min-height: 240px; }
  .svc-card--lead { grid-column: span 4; }
  .svc-card--wide { grid-column: span 3; }
}

/* ====================================================================
   REALISATIONS / GALERIE — LAY-6 grid-feat (1 grande + petites)
   ==================================================================== */
.real .real-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.real .gal-feat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
}
.real .gal-item {
  position: relative;
  cursor: zoom-in;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.real .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-mid);
}
.real .gal-item:hover img { transform: scale(1.05); }
.real .gal-item__tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(20,30,22,0.78);
  color: #fff;
  border-radius: 999px;
}
.real .gal-item--big { grid-column: span 2; grid-row: span 2; aspect-ratio: 4/3; }

@media (min-width: 720px) {
  .real .gal-feat {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
  .real .gal-item--big {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

.real-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.real-actions .btn { width: 100%; }
@media (min-width: 720px) {
  .real-actions { flex-direction: row; flex-wrap: wrap; }
  .real-actions .btn { width: auto; }
}
.real-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 5%, var(--bg));
  font-style: italic;
  color: var(--text-2);
  font-size: 0.94rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* ====================================================================
   STATS STRIP
   ==================================================================== */
.stats-strip {
  background: var(--bg-alt);
  padding: 40px 0;
}
.stats-strip .stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-2);
}
@media (min-width: 640px) {
  .stats-strip .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .stat-item { position: relative; }
  .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: color-mix(in srgb, var(--text) 14%, transparent);
  }
}

/* ====================================================================
   AVIS — LAY-6 row-sep (lignes avec separateurs)
   ==================================================================== */
.avis .avis-headline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  color: var(--text-2);
}
.avis .avis-headline strong {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--text);
  white-space: nowrap;
}
.avis .avis-headline .stars {
  display: inline-flex;
  gap: 2px;
  white-space: nowrap;
}
.avis .avis-headline .stars svg { width: 16px; height: 16px; fill: var(--accent-2); }
.avis-rows {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
.avis-rows__item {
  padding: 28px 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.avis-rows__item:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}
@media (min-width: 760px) {
  .avis-rows__item {
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 36px 0;
  }
}
.avis-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.avis-meta .author {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}
.avis-meta .date {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  color: var(--text-mute);
}
.avis-meta .avis-stars {
  display: inline-flex;
  gap: 2px;
  margin-top: 2px;
}
.avis-meta .avis-stars svg { width: 14px; height: 14px; fill: var(--accent-2); }
.avis-meta .badge-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--text-mute);
  margin-top: 6px;
}
.avis-meta .badge-google svg { width: 12px; height: 12px; }

.avis-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.55;
  color: var(--text);
  position: relative;
  padding-left: 18px;
  border-left: 2px solid color-mix(in srgb, var(--accent) 50%, transparent);
}
@media (min-width: 760px) {
  .avis-quote { font-size: 1.15rem; padding-left: 26px; }
}

.lien-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.lien-google svg { width: 14px; height: 14px; flex-shrink: 0; }
.lien-google:hover { color: var(--accent-2); }

/* ====================================================================
   FAQ
   ==================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
}
.faq-item:first-child { border-top: 1px solid color-mix(in srgb, var(--text) 14%, transparent); }
.faq-trigger {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--text);
  line-height: 1.3;
  cursor: pointer;
}
@media (min-width: 720px) {
  .faq-trigger { font-size: 1.18rem; padding: 26px 0; }
}
.faq-chevron {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform var(--t-mid), background var(--t-mid), color var(--t-mid);
  position: relative;
}
.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq-chevron::before { width: 12px; height: 2px; }
.faq-chevron::after { width: 2px; height: 12px; transition: transform var(--t-mid); }
.faq-trigger[aria-expanded="true"] .faq-chevron {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  padding-bottom: 22px;
  padding-right: 50px;
}
.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--text-2);
}

/* ====================================================================
   ZONE / CONTACT
   ==================================================================== */
.zone .zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px) {
  .zone .zone-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.zone-info h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  margin: 24px 0 12px;
}
.zone-info h3:first-child { margin-top: 0; }
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.horaires {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.horaires-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-family: var(--ff-ui);
  font-size: 0.94rem;
}
.horaires-row.is-today {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-weight: 600;
}
.horaires-row.is-closed { color: var(--text-mute); }
.horaires-row .day { text-transform: capitalize; }
.dispo-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: var(--text-2);
}
.dispo-line .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4DAA7B;
}
.dispo-line.is-closed .dot { background: #C46A4A; }

.map-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (min-width: 880px) {
  .map-wrap { aspect-ratio: 4/4.5; }
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* CONTACT */
.contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 980px) {
  .contact .contact-grid { grid-template-columns: 1fr 1.05fr; gap: 56px; }
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.tel-big {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: var(--accent-on-dark);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-top: 8px;
  display: inline-block;
}
.tel-big:hover { color: #fff; }
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}
.contact-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 14px;
}
.contact-row .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--accent-on-dark);
  display: grid;
  place-items: center;
}
.contact-row .icon svg { width: 16px; height: 16px; }
.contact-row p { color: rgba(255,255,255,0.86); font-size: 0.95rem; margin: 0; line-height: 1.45; }
.contact-row small { color: rgba(255,255,255,0.6); font-size: 0.78rem; }

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.contact-ctas .btn { width: 100%; }

.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 28px 22px;
}
.contact-form-wrap h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: #fff;
}
.contact-form-wrap p { color: rgba(255,255,255,0.78); font-size: 0.93rem; margin-bottom: 22px; }
.form-grid { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

/* About — used on realisations.html maybe */
.real-cta-card {
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
}
.real-cta-card,
.real-cta-card :where(h1, h2, h3, h4, p, li, span, a, strong) { color: #fff; }
.real-cta-card p { color: rgba(255,255,255,0.86); }
.real-cta-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 18px;
}
.real-cta-card .real-cta-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin: 0 auto;
}
.real-cta-card .btn { width: 100%; }
@media (min-width: 720px) {
  .real-cta-card .real-cta-ctas { flex-direction: row; max-width: none; justify-content: center; }
  .real-cta-card .btn { width: auto; }
}

/* Realisations page (standalone) */
.real-page-hero {
  padding: 36px 0 24px;
  text-align: center;
}
.real-page-hero .breadcrumb {
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.real-page-hero .breadcrumb a { color: var(--text-2); }
.real-page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}
.real-page-hero p {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--text-2);
}

.real-masonry {
  column-count: 1;
  column-gap: 14px;
}
.real-masonry .gal-item {
  break-inside: avoid;
  margin-bottom: 14px;
  width: 100%;
  aspect-ratio: auto;
  display: block;
}
.real-masonry .gal-item img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
}
@media (min-width: 640px) { .real-masonry { column-count: 2; } }
@media (min-width: 1000px) { .real-masonry { column-count: 3; } }
