/* HERO-SPLIT */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h-mobile) + 26px) 20px 36px;
  align-items: center;
}
.hero-split__inner { min-width: 0; }
.hero-split__title {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 8vw, 4rem);
  line-height: 1.05;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0 0 18px;
}
.hero-split__title em {
  font-style: italic;
  color: var(--accent-deep);
  background: linear-gradient(180deg, transparent 64%, color-mix(in srgb, var(--accent) 22%, transparent) 64%, color-mix(in srgb, var(--accent) 22%, transparent) 88%, transparent 88%);
  padding: 0 .05em;
}
.hero-split__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  color: var(--text-2);
  margin: 0 0 24px;
  max-width: 48ch;
  line-height: 1.55;
}
.hero-split__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-split__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.hero-split__cta .btn { width: 100%; }
.hero-split__media {
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
  border: 1.5px solid var(--text);
  box-shadow: 6px 6px 0 var(--accent);
  order: -1;
}
.hero-split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-split__photo-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--surface-deep);
  color: #F4EFD8;
  font-family: var(--ff-ui);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.hero-split__meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .86rem;
  color: var(--text-2);
}
.hero-split__meta strong { color: var(--text); font-weight: 600; }
.hero-split__rating {
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .hero-split {
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(36px, 5vw, 64px);
    padding: calc(var(--header-h) + 60px) 40px 100px;
    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(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
.stat-item {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
@media (min-width: 600px) {
  .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0; top: 14%;
    width: 1px; height: 72%;
    background: var(--border);
  }
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  color: var(--accent-deep);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label {
  display: block;
  font-family: var(--ff-ui);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 12px;
  font-weight: 500;
}

/* Realisations section */
.realisations { background: var(--bg); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 560px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
.gal-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: var(--bg-alt);
  border: 1.5px solid var(--text);
  transition: transform .25s, box-shadow .25s;
  display: block;
  width: 100%;
  padding: 0;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gal-item:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--accent); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item__tag {
  position: absolute;
  left: 8px; bottom: 8px;
  background: var(--surface-deep);
  color: #F4EFD8;
  font-family: var(--ff-ui);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 99px;
  font-weight: 600;
}
.gallery-foot {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 600px) {
  .gallery-foot { flex-direction: row; align-items: center; justify-content: space-between; }
}
.gallery-foot p { margin: 0; color: var(--text-2); font-size: .92rem; }

/* Services (LAY-3, grid-3) */
.services { background: var(--bg-alt); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 22px);
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { padding: 24px 22px; }
.svc-card-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}
.svc-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  margin: 0 0 .55em;
  line-height: 1.22;
  color: var(--text);
}
.svc-card p {
  font-size: .94rem;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.svc-card--dark.c-riso--dark h3 { color: #fff; }
.svc-card--dark.c-riso--dark p { color: color-mix(in srgb, #F4EFD8 92%, transparent); }

/* A propos */
.apropos { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 5vw, 64px); }
}
.about-media {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1.5px solid var(--text);
  box-shadow: 6px 6px 0 var(--accent);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-body p { font-size: 1.04rem; line-height: 1.65; color: var(--text-2); }
.about-body p.lead { font-size: 1.18rem; color: var(--text); }
.about-body p.lead::first-letter {
  font-family: var(--ff-display);
  font-size: 3.2em;
  float: left;
  line-height: .92;
  padding: 6px 10px 0 0;
  color: var(--accent);
  font-weight: 600;
  font-style: italic;
}
.about-sign {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-sign__name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text);
}
.about-sign__role {
  font-family: var(--ff-ui);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* Avis */
.avis-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.avis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .avis-cards { grid-template-columns: 1fr; } }
.avis-card { padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.avis-stars { display: inline-flex; gap: 2px; color: #E3A615; }
.avis-stars svg { width: 16px; height: 16px; }
.avis-card blockquote {
  margin: 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  flex: 1;
}
.avis-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--ff-ui);
}
.avis-author__name { font-weight: 600; color: var(--text); font-size: .95rem; }
.avis-author__date { font-size: .8rem; color: var(--text-mute); }
.avis-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: .76rem;
  color: var(--text-2);
}
.avis-google svg { width: 12px; height: 12px; }
.avis-foot {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.avis-foot small {
  color: var(--text-mute);
  font-size: .82rem;
  font-style: italic;
}

/* FAQ */
.faq-section { background: var(--bg-alt); }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: transparent;
  border: 0;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font-weight: 500;
  min-height: 64px;
}
.faq-chevron {
  width: 28px; height: 28px;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  flex-shrink: 0;
  transition: transform .3s, background .2s, color .2s;
  font-size: 1rem;
  line-height: 1;
}
.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.faq-answer {
  padding: 0 4px 22px;
  color: var(--text-2);
  line-height: 1.6;
}
.faq-answer p { margin: 0; max-width: 64ch; }

/* Zone */
.zone-section { background: var(--bg); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .zone-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; }
}
.zone-info h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  margin: 0 0 12px;
}
.zone-info ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.zone-info ul li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .85rem;
  color: var(--text);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-ui);
  font-size: .92rem;
}
.hours-table tr {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.hours-table td:first-child { color: var(--text); text-transform: capitalize; font-weight: 500; }
.hours-table td:nth-child(2) { color: var(--text-2); font-variant-numeric: tabular-nums; }
.hours-table tr.is-today {
  background: var(--accent-soft);
  border-radius: 6px;
  padding-left: 10px; padding-right: 10px;
}
.hours-table tr.is-today td:first-child { color: var(--accent-deep); font-weight: 700; }
.hours-table tr.is-closed td:nth-child(2) { color: var(--text-mute); font-style: italic; }
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 14px;
  background: var(--surface);
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: var(--ff-ui);
  font-size: .86rem;
  font-weight: 500;
}
.open-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-mute);
  flex-shrink: 0;
}
.open-badge.is-open .open-dot {
  background: #2E9E4F;
  box-shadow: 0 0 0 3px color-mix(in srgb, #2E9E4F 30%, transparent);
  animation: open-pulse 2s ease-in-out infinite;
}
.open-badge.is-closed .open-dot { background: #C7541F; }
@keyframes open-pulse {
  0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, #2E9E4F 30%, transparent); }
  50%      { box-shadow: 0 0 0 6px color-mix(in srgb, #2E9E4F 15%, transparent); }
}
.map-wrap {
  position: relative;
  padding-top: 70%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1.5px solid var(--text);
  box-shadow: 5px 5px 0 var(--accent);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact */
.contact-section { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.contact-quick { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s, transform .15s;
}
.contact-item:hover { border-color: var(--accent); transform: translateY(-2px); color: var(--text); }
.contact-item__icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 50%;
}
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item__label {
  font-family: var(--ff-ui);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-mute);
  font-weight: 600;
}
.contact-item__value {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2px;
}

/* Footer specific */
.foot-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-top: 16px;
  color: color-mix(in srgb, #fff 92%, transparent);
}

/* Page realisations */
.page-realisations { padding-top: calc(var(--header-h-mobile) + 36px); }
@media (min-width: 768px) { .page-realisations { padding-top: calc(var(--header-h) + 60px); } }
.realisations-full .gal-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .realisations-full .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .realisations-full .gal-grid { grid-template-columns: 1fr; } }
.realisations-full .gal-item { aspect-ratio: 4/3; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: .92rem;
  margin-bottom: 18px;
  color: var(--text-2);
  font-weight: 500;
}
.back-link svg { width: 16px; height: 16px; }
.back-link:hover { color: var(--accent); }

/* Realisations CTA tail */
.real-cta {
  margin-top: 56px;
  padding: 40px;
  background: var(--surface-deep);
  color: #F4EFD8;
  border-radius: 18px;
  text-align: center;
}
.real-cta h2 { color: #fff; margin-top: 0; }
.real-cta p { color: color-mix(in srgb, #F4EFD8 85%, transparent); max-width: 56ch; margin: 0 auto 22px; }
