/* Sections : padding mobile 48px / desktop 80px */
section {
  padding: 48px 0;
}
@media (min-width: 768px) {
  section { padding: 80px 0; }
}

/* HERO-IMMERSIF (photo plein ecran + voile) */
.hero-immersif {
  position: relative;
  min-height: clamp(560px, 88vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 6vw, 72px) 0;
  overflow: hidden;
  margin-top: 0;
}
.hero-immersif__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-immersif__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-immersif::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 18, 12, 0.20) 0%, rgba(20, 18, 12, 0.45) 45%, rgba(20, 18, 12, 0.78) 100%);
}
.hero-immersif__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h-mobile) + 32px) 20px 36px;
  color: #fff;
}
@media (min-width: 768px) {
  .hero-immersif__inner { padding: 0 32px; max-width: var(--container); }
}
.hero-immersif__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: #fff;
  opacity: 0.92;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero-immersif__eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}
.hero-immersif__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 1.04;
  color: #fff;
  max-width: 18ch;
  letter-spacing: -0.01em;
}
.hero-immersif__title em {
  font-style: italic;
  color: var(--accent-on-dark);
}
.hero-immersif__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  color: #fff;
  opacity: 0.94;
  margin: 18px 0 24px;
  max-width: 50ch;
  line-height: 1.55;
}
.hero-immersif__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.hero-immersif__chips .chip {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
}
.hero-immersif__chips .chip svg { color: var(--accent-on-dark); }
.hero-immersif__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 420px;
}
.hero-immersif__cta .btn { width: 100%; }
@media (min-width: 560px) {
  .hero-immersif__cta { flex-direction: row; max-width: none; }
  .hero-immersif__cta .btn { width: auto; }
}
.hero-immersif__cta .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  backdrop-filter: blur(4px);
}
.hero-immersif__cta .btn-ghost:hover {
  background: #fff;
  color: var(--text);
}
.hero-tag-pill {
  position: absolute;
  top: calc(var(--header-h-mobile) + 16px);
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid rgba(255,255,255,0.28);
}
@media (max-width: 480px) { .hero-tag-pill { display: none; } }

/* AVIS - single layout (LAY-2) */
.avis-section {
  background: var(--bg);
}
.avis-section .container { display: flex; flex-direction: column; align-items: center; }
.avis-section .sec-head { text-align: center; align-items: center; }
.avis-section .sec-head .eyebrow { justify-content: center; }
.avis-section .sec-head .lede { margin-left: auto; margin-right: auto; }

.avis-single {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 48px);
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  position: relative;
}
.avis-single::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
}
.avis-single .stars { margin-bottom: 18px; }
.avis-single__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  line-height: 1.4;
  color: var(--text);
  margin: 0;
  font-style: italic;
  font-weight: 400;
}
.avis-single__author {
  margin-top: 22px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  color: var(--text-2);
  font-family: var(--ff-ui);
  font-size: 0.92rem;
}
.avis-single__author strong { color: var(--text); font-weight: 600; }
.avis-single__author .badge-google { color: var(--text-mute); }

.avis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
  width: 100%;
  max-width: 1080px;
}
@media (min-width: 720px) {
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
}
.avis-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.avis-card blockquote {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.55;
  font-family: var(--ff-body);
}
.avis-card .stars { align-self: flex-start; }
.avis-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ff-ui);
  font-size: 0.86rem;
  color: var(--text-2);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 8px;
}
.avis-card__author strong { color: var(--text); font-weight: 600; }
.avis-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* SERVICES - alt-rows (LAY-2) */
.services-section { background: var(--bg-alt); }
.svc-alt {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 64px);
}
.svc-alt__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
@media (min-width: 768px) {
  .svc-alt__row { grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); }
  .svc-alt__row:nth-child(even) .svc-alt__media { order: -1; }
}
.svc-alt__media {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.svc-alt__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.svc-alt__row:hover .svc-alt__media img { transform: scale(1.03); }
.svc-alt__media-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  backdrop-filter: blur(4px);
}
.svc-alt__num {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--accent);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: inline-block;
}
.svc-alt__title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}
.svc-alt__title em { font-style: italic; color: var(--accent); }
.svc-alt__text {
  color: var(--text-2);
  line-height: 1.6;
  font-size: 1rem;
}
.svc-alt__bullets {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-alt__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 0.94rem;
}
.svc-alt__bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* A propos */
.apropos-section { background: var(--surface); }
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .apropos-grid { grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 64px); }
}
.apropos-text p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.apropos-text p::first-letter {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 0.9;
  float: left;
  color: var(--accent);
  margin: 6px 10px 0 0;
  font-style: italic;
}
.apropos-text p:not(:first-of-type)::first-letter {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  float: none;
  color: inherit;
  margin: 0;
  font-style: normal;
}
.apropos-checks {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.apropos-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 0.94rem;
  color: var(--text);
}
.apropos-checks svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}
.apropos-signature {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
}
.apropos-signature::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--accent);
}
.apropos-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 12px 12px 0 -3px color-mix(in srgb, var(--accent) 28%, var(--bg));
}
.apropos-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.apropos-photo-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
}

/* GALERIE - masonry (LAY-2) */
.realisations-section { background: var(--bg); }
.realisations-section .container { max-width: var(--container); }
.gal-masonry {
  column-count: 1;
  column-gap: 14px;
}
@media (min-width: 560px) {
  .gal-masonry { column-count: 2; }
}
@media (min-width: 900px) {
  .gal-masonry { column-count: 3; }
}
.gal-item {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  border-radius: var(--r-md);
  overflow: hidden;
  break-inside: avoid;
  cursor: zoom-in;
  position: relative;
  background: var(--bg-alt);
  padding: 0;
  border: 0;
}
.gal-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item__tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  pointer-events: none;
}
.realisations-more {
  margin-top: 32px;
  text-align: center;
}

/* STATS strip */
.stats-strip {
  background: var(--surface-deep);
  color: var(--text-on-dark);
  padding: 44px 0;
}
.stats-strip .container { padding-top: 0; padding-bottom: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 560px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--accent-on-dark);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-on-dark-2);
}

/* FAQ */
.faq-section { background: var(--bg); }
.faq-list { max-width: 800px; 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%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
}
.faq-chevron {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: transform var(--t-base);
}
.faq-chevron::before, .faq-chevron::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq-chevron::before { width: 14px; height: 1.5px; }
.faq-chevron::after { width: 1.5px; height: 14px; transition: transform var(--t-base); }
.faq-trigger[aria-expanded="true"] .faq-chevron::after { transform: rotate(90deg); }
.faq-answer {
  padding: 0 4px 22px;
}
.faq-answer p {
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Zone */
.zone-section { background: var(--bg-alt); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) {
  .zone-grid { grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
}
.zone-info h3 {
  font-size: 1.2rem;
  margin: 22px 0 12px;
  font-family: var(--ff-display);
  color: var(--text);
}
.zone-info h3:first-child { margin-top: 0; }
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zone-list li {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--ff-ui);
  font-size: 0.86rem;
  color: var(--text);
}
.horaires-table {
  margin-top: 8px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.horaires-table .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 11px 16px;
  border-top: 1px solid var(--border);
  font-family: var(--ff-ui);
  font-size: 0.92rem;
}
.horaires-table .row:first-child { border-top: 0; }
.horaires-table .row.is-today {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  font-weight: 600;
  color: var(--text);
}
.horaires-table .row.is-closed {
  color: var(--text-mute);
}
.horaires-table .day { text-transform: capitalize; }
.dispo-line {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: var(--text);
}
.dispo-line .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text-mute);
  flex-shrink: 0;
  position: relative;
}
.dispo-line.is-open .dot {
  background: #2EAA53;
  box-shadow: 0 0 0 0 rgba(46, 170, 83, 0.6);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(46, 170, 83, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(46, 170, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 170, 83, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .dispo-line.is-open .dot { animation: none; }
}
.map-wrapper {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.map-wrapper iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
@media (min-width: 900px) {
  .map-wrapper iframe { height: 460px; }
}

/* Contact */
.contact-section {
  background: var(--surface-deep);
  color: var(--text-on-dark);
}
.contact-section, .contact-section :where(h1, h2, h3, h4, p, li, span, a, small, label, blockquote) {
  color: var(--text-on-dark);
}
.contact-section .sec-head .eyebrow { color: var(--accent-on-dark); }
.contact-section .sec-head .eyebrow::before { background: var(--accent-on-dark); }
.contact-section .sec-head h2 em { color: var(--accent-on-dark); }
.contact-section .sec-head .lede { color: var(--text-on-dark-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.contact-row:hover { background: rgba(255, 255, 255, 0.09); }
.contact-row__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(198, 207, 160, 0.15);
  border-radius: 50%;
  color: var(--accent-on-dark);
}
.contact-row__icon svg { width: 18px; height: 18px; }
.contact-row__txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-row__label {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-on-dark-2);
}
.contact-row__val {
  font-family: var(--ff-ui);
  font-size: 1.02rem;
  color: var(--text-on-dark);
  font-weight: 500;
  word-break: break-word;
}
.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.contact-cta .btn { width: 100%; }
@media (min-width: 560px) {
  .contact-cta { flex-direction: row; }
  .contact-cta .btn { width: auto; flex: 1; }
}
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 16px;
}
.contact-form h3 {
  font-size: 1.2rem;
  color: var(--text-on-dark);
  margin-bottom: 4px;
  font-family: var(--ff-display);
}
.contact-form .form-field label { color: var(--text-on-dark-2); }
.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-on-dark);
}
.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder {
  color: rgba(207, 205, 191, 0.55);
}
.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
  border-color: var(--accent-on-dark);
  box-shadow: 0 0 0 3px rgba(198, 207, 160, 0.22);
}
.contact-form .form-row-2 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .contact-form .form-row-2 { grid-template-columns: 1fr 1fr; }
}
.contact-form .form-action {
  margin-top: 6px;
}
.contact-form .form-action .btn { width: 100%; }
@media (min-width: 560px) {
  .contact-form .form-action .btn { width: auto; }
}

/* Realisations page */
.real-hero {
  padding: calc(var(--header-h-mobile) + 36px) 0 32px;
}
@media (min-width: 768px) {
  .real-hero { padding: calc(var(--header-h) + 56px) 0 40px; }
}
.breadcrumb {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--text-mute); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--accent); }
.real-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  max-width: 20ch;
  margin-bottom: 18px;
}
.real-hero h1 em { font-style: italic; color: var(--accent); }
.real-hero .lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-2);
  max-width: 60ch;
  line-height: 1.6;
}
.real-cta {
  background: var(--surface-deep);
  color: var(--text-on-dark);
  text-align: center;
  padding: clamp(48px, 6vw, 80px) 0;
}
.real-cta, .real-cta :where(h2, p, a) { color: var(--text-on-dark); }
.real-cta h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  max-width: 22ch;
  margin: 0 auto 14px;
  line-height: 1.1;
}
.real-cta h2 em { font-style: italic; color: var(--accent-on-dark); }
.real-cta p {
  color: var(--text-on-dark-2);
  max-width: 56ch;
  margin: 0 auto 24px;
}
.real-cta__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.real-cta__cta .btn { width: 100%; }
@media (min-width: 560px) {
  .real-cta__cta { flex-direction: row; max-width: none; justify-content: center; }
  .real-cta__cta .btn { width: auto; }
}
