/* HERO-SPLIT */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 20px 56px;
}
.hero-split__inner { display: flex; flex-direction: column; gap: 4px; }
.hero-split__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 6.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
}
.hero-split__title em {
  color: var(--accent-deep);
  font-style: italic;
  display: inline-block;
}
.hero-split__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-2);
  margin: 18px 0 4px;
  max-width: 50ch;
  line-height: 1.55;
}
.hero-split__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.hero-split__cta .btn { width: 100%; }
.hero-split__media {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  order: -1;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-split__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(31,53,49,0.32), transparent);
  pointer-events: none;
}
.hero-split__meta {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-split__meta span:first-child {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .hero-split {
    grid-template-columns: 1.04fr 0.96fr;
    gap: clamp(28px, 4vw, 56px);
    padding: 64px 20px 80px;
    align-items: center;
  }
  .hero-split__media {
    aspect-ratio: 4/5;
    order: 0;
  }
  .hero-split__cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-split__cta .btn { width: auto; }
}

/* STATS strip */
.stats-strip {
  background: var(--surface-dark);
  color: var(--text-inverse);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}
.stat-item { padding: 6px 0; }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  display: block;
  color: var(--text-inverse);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number em {
  font-style: italic;
  color: var(--accent-2);
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-inverse-2);
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .stat-item { position: relative; }
  .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 14%;
    bottom: 14%;
    width: 1px;
    background: rgba(255,255,255,0.14);
  }
}

/* A propos */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.about-media {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-text p {
  font-size: 1.02rem;
  color: var(--text-2);
  margin-bottom: 14px;
  line-height: 1.65;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-size: 3rem;
  float: left;
  line-height: 0.9;
  margin-right: 10px;
  margin-top: 6px;
  color: var(--accent-deep);
}
.about-signature {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent-deep);
  margin-top: 8px;
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}

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

/* Process */
.process { background: var(--bg); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.process-step:last-child { border-bottom: 1px solid var(--border); }
.process-step__num {
  font-family: var(--ff-display);
  font-size: 2.3rem;
  font-style: italic;
  color: var(--accent);
  line-height: 0.95;
  align-self: start;
}
.process-step__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.process-step__text {
  font-size: 0.96rem;
  color: var(--text-2);
  line-height: 1.55;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
  .process-step { border: 0; padding: 0; align-items: start; }
  .process-step:last-child { border: 0; }
  .process-step__num { font-size: 3rem; }
}

/* REALISATIONS galerie (LAY-1 gallery=grid) */
.gallery { background: var(--bg); }
.gal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.gal-item {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: zoom-in;
  position: relative;
  background: var(--surface);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.gal-item:hover img { transform: scale(1.04); }
.gal-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (min-width: 560px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
}

/* AVIS = cols-2 (LAY-1) */
.avis { background: var(--bg-alt); }
.avis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.avis-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.avis-stars {
  display: inline-flex;
  gap: 3px;
  color: #E0AC42;
}
.avis-stars svg { width: 17px; height: 17px; }
.avis-quote {
  font-family: var(--ff-display);
  font-size: 1.16rem;
  line-height: 1.45;
  color: var(--text);
  font-style: italic;
}
.avis-quote::before { content: "\201C"; color: var(--accent); margin-right: 2px; }
.avis-quote::after  { content: "\201D"; color: var(--accent); margin-left: 2px; }
.avis-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.avis-author { display: flex; flex-direction: column; gap: 1px; }
.avis-author strong {
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text);
}
.avis-author span {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  color: var(--text-mute);
}
.avis-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--text-2);
}
.avis-google svg { width: 16px; height: 16px; }
.avis-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-family: var(--ff-ui);
  font-weight: 500;
  color: var(--accent-deep);
  font-size: 0.94rem;
}
.avis-link svg { width: 14px; height: 14px; }
.avis-link:hover { color: var(--text); }
.avis-link-wrap { text-align: center; }

@media (min-width: 700px) {
  .avis-grid { grid-template-columns: 1fr; max-width: 700px; margin-left: auto; margin-right: auto; }
}

/* FAQ */
.faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
}
.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition);
}
.faq-chevron::before, .faq-chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--accent-deep);
  transform: translate(-50%, -50%);
}
.faq-chevron::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform var(--transition); }
.faq-trigger[aria-expanded="true"] .faq-chevron::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer {
  padding: 0 4px 22px;
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.6;
}
.faq-answer p + p { margin-top: 10px; }

/* ZONE + carte */
.zone { background: var(--bg-alt); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.zone-info { display: flex; flex-direction: column; gap: 24px; }
.zone-info h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.hours-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { color: var(--text-2); text-transform: capitalize; }
.hours-row .h { color: var(--text); font-variant-numeric: tabular-nums; font-weight: 500; }
.hours-row.is-today { background: var(--accent-soft); }
.hours-row.is-today .day, .hours-row.is-today .h { color: var(--accent-deep); font-weight: 600; }
.hours-row.is-closed .h { color: var(--text-mute); }
.map-wrap {
  position: relative;
  width: 100%;
  padding-top: 65%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 900px) {
  .zone-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
  }
  .map-wrap { padding-top: 0; height: 100%; min-height: 400px; }
}

/* CONTACT */
.contact { background: var(--bg); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.contact-card {
  background: var(--surface-dark);
  color: var(--text-inverse);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card h3 {
  font-family: var(--ff-display);
  color: var(--text-inverse);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.contact-card p { color: var(--text-inverse-2); font-size: 0.96rem; line-height: 1.55; }
.contact-list { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-inverse);
  font-family: var(--ff-ui);
  font-size: 0.96rem;
}
.contact-row a { color: var(--text-inverse); }
.contact-row a:hover { color: var(--accent-2); }
.contact-row .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-row .icon svg { width: 18px; height: 18px; }
.contact-row span.label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-inverse-2);
  margin-bottom: 2px;
}
.contact-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
}
.contact-form-wrap h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.contact-form-wrap p {
  font-size: 0.94rem;
  color: var(--text-2);
  margin-bottom: 18px;
}
@media (min-width: 900px) {
  .contact-wrap { grid-template-columns: 1.05fr 1fr; gap: 36px; }
  .contact-cta-row { flex-direction: row; flex-wrap: wrap; }
  .contact-cta-row .btn { flex: 1; min-width: 180px; }
}

/* PAGE realisations */
.real-hero {
  padding: 80px 0 32px;
  text-align: center;
  background: var(--bg-alt);
}
.real-hero .eyebrow { justify-content: center; }
.real-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 22ch;
  margin: 0 auto 12px;
}
.real-hero p {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--text-2);
  font-size: 1.04rem;
}
.real-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent-deep);
  font-family: var(--ff-ui);
  font-size: 0.92rem;
}
.real-back:hover { color: var(--text); }
.real-back svg { width: 14px; height: 14px; }
.masonry {
  column-count: 1;
  column-gap: 14px;
  margin-top: 28px;
}
.masonry .gal-item {
  margin: 0 0 14px;
  break-inside: avoid;
  aspect-ratio: auto;
}
.masonry .gal-item img {
  aspect-ratio: 4/3;
  height: auto;
}
@media (min-width: 700px) {
  .masonry { column-count: 2; }
}
@media (min-width: 1080px) {
  .masonry { column-count: 3; }
}
