/* HERO-SPLIT */
.hero {
  position: relative;
  padding: 0;
}
.hero-bg-oklch {
  background:
    radial-gradient(60% 60% at 15% 10%, color-mix(in oklab, var(--accent) 14%, var(--bg)) 0%, transparent 60%),
    radial-gradient(50% 50% at 90% 20%, color-mix(in oklab, var(--accent) 8%, var(--bg)) 0%, transparent 55%),
    var(--bg);
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h-mobile) + 24px) 20px 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(32px, 5vw, 64px);
    padding: clamp(48px, 7vw, 96px) 32px;
  }
}
.hero-eyebrow { margin-bottom: 16px; }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: var(--accent); font-weight: 500; }
.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  color: var(--text-2);
  margin: 0 0 22px;
  max-width: 50ch;
  line-height: 1.6;
}
.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-xl);
  overflow: hidden;
  order: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 12px;
  background: rgba(28, 40, 32, 0.78);
  color: #F1F4EE;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}
@media (min-width: 900px) {
  .hero-media { aspect-ratio: 4/5; order: 0; }
}

/* Stats strip */
.stats-strip {
  padding: 24px 0 40px;
  background: var(--bg);
}
@media (min-width: 768px) { .stats-strip { padding: 36px 0 60px; } }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px 18px;
  background: color-mix(in srgb, var(--accent) 6%, var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
@media (min-width: 560px) { .stats-grid { padding: 28px 24px; gap: 18px; } }
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  padding: 6px 4px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: 0; }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.74rem;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}
@media (max-width: 460px) {
  .stat-label { font-size: 0.66rem; }
}

/* Process (COMP-4 spec) */
.process { background: var(--bg-alt); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.process-card {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.process-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.process-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Services (LAY-1 grid-3 + card=line) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { padding: 28px 24px; }
.svc-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  margin-bottom: 18px;
}
.svc-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Realisations (gallery=grid) */
.realisations { background: var(--bg); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 768px) { .gal-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
.gal-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-alt);
}
.gal-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-family: var(--ff-ui);
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: gap var(--t-quick);
}
.gal-link:hover { gap: 12px; }
.gal-link svg { width: 16px; height: 16px; }

/* About */
.about { background: var(--bg-alt); }
.about-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) { .about-cols { grid-template-columns: 1.05fr 0.95fr; gap: 48px; } }
.about-text h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  margin-bottom: 16px;
  max-width: 22ch;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 3rem;
  float: left;
  line-height: 0.92;
  padding: 6px 10px 0 0;
  color: var(--accent);
}
.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}
@media (min-width: 560px) { .about-points { grid-template-columns: 1fr 1fr; gap: 12px; } }
.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.about-points li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2329402F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.about-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
}
@media (max-width: 899px) { .about-media { aspect-ratio: 16/11; } }
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-media-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 12px;
  background: rgba(28, 40, 32, 0.78);
  color: #F1F4EE;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

/* Avis (LAY-1 cols-2 + card=line) */
.avis { background: var(--bg); }
.avis-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) { .avis-cols { grid-template-columns: 1fr 1fr; gap: 22px; } }
.avis-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
}
.avis-stars {
  display: inline-flex;
  gap: 2px;
  color: #F5B100;
  margin-bottom: 12px;
}
.avis-stars svg { width: 18px; height: 18px; }
.avis-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 18px;
  flex: 1;
}
.avis-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.avis-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--ff-ui);
}
.avis-author strong {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}
.avis-author span {
  font-size: 0.78rem;
  color: var(--text-mute);
}
.badge-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--text-2);
}
.badge-google svg { width: 14px; height: 14px; }
.avis-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-family: var(--ff-ui);
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* FAQ */
.faq { background: var(--bg-alt); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--text);
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.faq-trigger:hover { background: var(--bg); }
.faq-chevron {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-chevron::before, .faq-chevron::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
  transition: transform var(--t-soft);
}
.faq-chevron::before {
  width: 14px;
  height: 2px;
  top: 10px;
  left: 4px;
}
.faq-chevron::after {
  width: 2px;
  height: 14px;
  top: 4px;
  left: 10px;
}
.faq-trigger[aria-expanded="true"] .faq-chevron::after { transform: scaleY(0); }
.faq-answer {
  padding: 0 22px 22px;
}
.faq-answer p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-2);
}

/* Zone */
.zone { background: var(--bg); }
.zone-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) { .zone-cols { grid-template-columns: 1fr 1fr; gap: 36px; } }
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.zone-chips .chip { background: var(--surface); border-color: var(--border); color: var(--text); }
.zone-chips .chip:hover { border-color: var(--accent); }
.dispo-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 18px;
}
.dispo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2EBF6A;
  flex-shrink: 0;
  position: relative;
}
.dispo-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(46, 191, 106, 0.30);
  animation: pulse 2.2s ease-in-out infinite;
}
.dispo-dot.is-closed { background: #C75E4E; }
.dispo-dot.is-closed::after { background: rgba(199, 94, 78, 0.30); }
@keyframes pulse {
  0%, 100% { transform: scale(.8); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 0; }
}
.dispo-text {
  font-family: var(--ff-ui);
  font-size: 0.94rem;
  color: var(--text);
}
.horaires-table {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.horaire-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  background: var(--surface);
  font-family: var(--ff-ui);
  font-size: 0.92rem;
}
.horaire-row.is-today {
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  font-weight: 500;
}
.horaire-row.is-today .horaire-day::before {
  content: "›";
  margin-right: 4px;
  color: var(--accent);
}
.horaire-day { color: var(--text); }
.horaire-hours { color: var(--text-2); }
.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 900px) { .map-wrapper { aspect-ratio: 1/1; } }

/* Contact (dark) */
.contact {
  background: var(--surface-deep);
  color: var(--text-on-dark);
}
.contact h2, .contact .eyebrow { color: var(--text-on-dark); }
.contact .eyebrow { color: var(--accent-on-dark); }
.contact .eyebrow::before { background: var(--accent-on-dark); }
.contact h2 em { color: var(--accent-on-dark); }
.contact .sec-head p { color: var(--text-on-dark-2); }
.contact-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) { .contact-cols { grid-template-columns: 1fr 1fr; gap: 40px; } }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--text-on-dark);
  transition: background var(--t-quick);
}
.contact-row:hover { background: rgba(255, 255, 255, 0.08); }
.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--accent-on-dark) 22%, transparent);
  color: var(--accent-on-dark);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-detail { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-label {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-2);
}
.contact-value {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--text-on-dark);
}
.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
@media (min-width: 560px) { .contact-cta { flex-direction: row; flex-wrap: wrap; } }
.contact-cta .btn { flex: 1; min-width: 180px; }

/* Page realisations specifique */
.real-hero {
  padding: calc(var(--header-h-mobile) + 40px) 0 30px;
}
@media (min-width: 768px) { .real-hero { padding: 110px 0 50px; } }
.breadcrumb {
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  color: var(--text-mute);
  margin-bottom: 22px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--accent); }
.real-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 22ch;
}
.real-hero p {
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.6;
}
.gal-masonry-wrap { padding-bottom: 30px; }
.gal-masonry {
  column-count: 1;
  column-gap: 14px;
}
@media (min-width: 600px) { .gal-masonry { column-count: 2; } }
@media (min-width: 1000px) { .gal-masonry { column-count: 3; } }
.gal-masonry .gal-item {
  margin-bottom: 14px;
  break-inside: avoid;
}
.gal-masonry .gal-item img {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
}
.real-cta {
  background: var(--surface-deep);
  color: var(--text-on-dark);
  padding: 56px 0;
  text-align: center;
}
.real-cta h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  color: var(--text-on-dark);
  margin: 0 auto 14px;
  max-width: 26ch;
}
.real-cta h2 em { color: var(--accent-on-dark); }
.real-cta p {
  color: var(--text-on-dark-2);
  max-width: 50ch;
  margin: 0 auto 28px;
}
.real-cta .cta-group { margin: 0 auto; }
