﻿/* ── Live page ────────────────────────────────────────────────────── */
.live-msg {
  background: #f5f0e8;
  border-left: 4px solid var(--gold, #c9a84c);
  padding: .6rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 4px;
}

.live-form {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  max-width: 480px;
  margin-bottom: 1.8rem;
}
.live-form__row {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.live-form label {
  font-weight: 600;
  font-size: .9rem;
}
.live-form input,
.live-form select {
  padding: .45rem .7rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.live-btn {
  display: inline-block;
  padding: .55rem 1.4rem;
  background: var(--gold, #c9a84c);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}
.live-btn:hover { opacity: .88; }
.live-btn--sm { font-size: .85rem; padding: .4rem 1rem; }

.live-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: .93rem;
}
.live-table th,
.live-table td {
  padding: .5rem .7rem;
  border-bottom: 1px solid #e5e0d5;
  text-align: left;
}
.live-table thead tr { background: #f5f0e8; }

.live-like-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
}

.color-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  vertical-align: middle;
}
.color-dot.green  { background: #3cb371; }
.color-dot.yellow { background: #f0b429; }


/* ── Galerie ──────────────────────────────────────────────────────── */
.gal-container { padding-bottom: 3rem; }

/* Back link */
.gal-back {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .5rem;
  font-size: .9rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.gal-back:hover { color: var(--color_dore); }

/* Section header */
.gal-section-title {
  margin: 2.5rem 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color_dore);
  position: relative;
  padding-bottom: .5rem;
}
.gal-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--color_dore);
}

/* ── Category cards ───────────────────────────────── */
.gal-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.gal-cat-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  aspect-ratio: 16 / 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gal-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}

.gal-cat-card__img {
  position: absolute;
  inset: 0;
}
.gal-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gal-cat-card:hover .gal-cat-card__img img {
  transform: scale(1.06);
}

.gal-cat-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #f5f0e8, #e0d9cc);
}

.gal-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}
.gal-cat-card__name {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}
.gal-cat-card__count {
  font-size: .8rem;
  opacity: .8;
  margin-top: .2rem;
}

/* ── Image mosaic grid (inside category) ─────────── */
.gal-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  margin-bottom: 1.5rem;
}

.gal-item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #f5f0e8;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gal-item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
  z-index: 1;
}
.gal-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: filter .25s ease;
}
.gal-item:hover img {
  filter: brightness(1.05);
}
.gal-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .4rem .6rem;
  font-size: .75rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.gal-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ── Pagination ───────────────────────────────────── */
.gal-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  margin: 1rem 0 2rem;
}
.gal-pagination__num,
.gal-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 .5rem;
  border: 1px solid #d5d0c8;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: .85rem;
  font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
}
.gal-pagination__btn {
  font-size: 1.3rem;
  font-weight: 400;
}
.gal-pagination__num:hover,
.gal-pagination__btn:hover {
  background: var(--color_dore);
  color: #fff;
  border-color: var(--color_dore);
}
.gal-pagination__num--active {
  background: var(--color_dore);
  color: #fff;
  border-color: var(--color_dore);
  pointer-events: none;
}

/* ── Lightbox ─────────────────────────────────────── */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.gal-lightbox--open {
  opacity: 1;
  visibility: visible;
}

.gal-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s, transform .2s;
  z-index: 2;
}
.gal-lightbox__close:hover {
  opacity: 1;
  transform: scale(1.15);
}

.gal-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .6;
  transition: opacity .2s, background .2s;
  z-index: 2;
}
.gal-lightbox__arrow:hover {
  opacity: 1;
  background: rgba(255,255,255,.25);
}
.gal-lightbox__arrow--prev { left: 1rem; }
.gal-lightbox__arrow--next { right: 1rem; }

.gal-lightbox__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 90vh;
}
.gal-lightbox__content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  -webkit-user-drag: none;
}

.gal-lightbox__caption {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .75rem;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  text-align: center;
  max-width: 80vw;
}
.gal-lightbox__counter {
  white-space: nowrap;
  background: rgba(255,255,255,.15);
  padding: .2rem .6rem;
  border-radius: 20px;
  font-size: .75rem;
}

/* ── Gallery responsive ──────────────────────────── */
@media (max-width: 600px) {
  .gal-cats {
    grid-template-columns: 1fr;
  }
  .gal-cat-card {
    aspect-ratio: 16 / 9;
  }
  .gal-mosaic {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 5px;
  }
  .gal-item { border-radius: 6px; }
  .gal-lightbox__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.8rem;
  }
  .gal-lightbox__arrow--prev { left: .4rem; }
  .gal-lightbox__arrow--next { right: .4rem; }
  .gal-lightbox__content img {
    max-width: 96vw;
    max-height: 75vh;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .gal-cats {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-mosaic {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (min-width: 901px) {
  .gal-mosaic {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
  }
}


/* ── Home — Présentation ───────────────────────────────────────────────────── */

/* Grand bandeau hero — remplace le header compact sur la page d'accueil */
.site-header--home {
  position: relative;        /* pas fixé : fait partie du flux normal */
  height: auto;
  display: block;
  padding: 3.5rem 0 2.8rem;
  text-align: center;
  background: linear-gradient(160deg, #fff 55%, #fffde7 100%);
  border-bottom: 6px solid var(--color_dore);
  box-shadow: 4px 4px 10px #555;
}

.site-header--home__inner {
  max-width: 700px;
  margin-inline: auto;
}

/* Pas de padding-top sur site-main quand le header n'est pas fixé */
body.page-home .site-main {
  padding-top: 12px;
  min-height: auto;
}

/* Classes helper du hero (réutilisés depuis le header sur home) */
.hp-hero__supra   { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: #888; margin: 0 0 .4rem; }
.hp-hero__sub     { font-size: 1.1rem; color: #555; margin: 0 0 .8rem; letter-spacing: .04em; }
.hp-hero__tagline { font-style: italic; color: #777; margin: 0 0 1.6rem; }
.hp-hero__cta     { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* Agrandir le titre dans le header home */
.site-header--home .brand__title { font-size: 3.2rem; margin: 0 0 .2rem; }

/* Buttons */
.hp-btn {
  display: inline-block;
  padding: .65rem 1.6rem;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.hp-btn:hover          { opacity: .87; transform: translateY(-1px); }
.hp-btn--gold          { background: var(--color_dore); color: #111; border: 2px solid var(--color_dore); }
.hp-btn--outline       { background: transparent; color: #333; border: 2px solid #bbb; }
.hp-btn--outline:hover { border-color: var(--color_dore); color: #111; }

/* Generic section wrapper */
.hp-section            { padding: 2.5rem 0; }
.hp-section--alt       { background: #fafaf7; }

.hp-section__title {
  font-size: 1.5rem;
  margin: 0 0 1.4rem;
  border-bottom: 2px solid var(--color_dore);
  padding-bottom: .5rem;
  display: inline-block;
}

/* Services grid */
.hp-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}
.hp-service-card {
  border: 1px solid #e8e3d8;
  border-radius: 8px;
  padding: 1.25rem 1rem 1rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .15s;
}
.hp-service-card:hover              { box-shadow: 0 4px 14px rgba(0,0,0,.13); transform: translateY(-2px); }
.hp-service-card__ico               { font-size: 2rem; }
.hp-service-card strong             { font-size: 1rem; }
.hp-service-card p                  { font-size: .88rem; color: #555; margin: 0; line-height: 1.5; }

/* About / zones */
.hp-about {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hp-about__text   { flex: 2 1 300px; line-height: 1.7; }
.hp-about__text p { margin: 0 0 .9rem; font-size: .95rem; }
.hp-about__zones  { flex: 1 1 220px; }

.hp-zones__title  { font-size: 1rem; font-weight: 700; margin: 0 0 .6rem; }
.hp-zones__list   { list-style: none; padding: 0; margin: 0 0 .8rem; display: flex; flex-direction: column; gap: .3rem; }
.hp-zones__list li { font-size: .9rem; }
.hp-zones__note   { font-size: .85rem; color: #888; margin: 0 0 1rem; }
.hp-zones__partner { font-size: .88rem; border-top: 1px solid #e0e0e0; padding-top: .7rem; }
.hp-zones__partner a { color: inherit; }

/* CTA band */
.hp-cta-band {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.4rem;
}
.hp-cta-item {
  background: #fff;
  border: 1px solid #e8e3d8;
  border-radius: 8px;
  padding: 1.4rem 1rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.hp-cta-item__ico { font-size: 2.2rem; }
.hp-cta-item strong { font-size: 1rem; }
.hp-cta-item p { font-size: .85rem; color: #666; margin: 0; line-height: 1.45; }

/* Photo cards – home */
.hp-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.hp-photo-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 4px 4px 12px rgba(0,0,0,.25);
}
.hp-photo-card img {
  width: 100%;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hp-photo-card img:hover {
  transform: scale(1.02);
  box-shadow: 6px 6px 18px rgba(0,0,0,.35);
}
@media (max-width: 640px) {
  .hp-photo-grid { grid-template-columns: 1fr; }
  .hp-photo-card--hidden { display: none; }
}

/* Responsive tweaks */
@media (min-width: 900px) {
  .site-header--home .brand__title { font-size: 4.4rem; }
}


/* ── Prestation DJ ──────────────────────────────────────────────────────── */
.pr-intro { font-size: .95rem; color: #555; line-height: 1.7; margin-bottom: 1.2rem; }

.pr-cols {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.pr-cols__text      { flex: 2 1 320px; line-height: 1.7; }
.pr-cols__text p    { font-size: .95rem; margin: 0 0 .9rem; }
.pr-cols__highlight { flex: 1 1 240px; display: flex; flex-direction: column; gap: 1rem; }

.pr-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.pr-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .93rem;
  line-height: 1.65;
}
.pr-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color_dore);
  font-weight: 700;
}

.pr-highlight-card {
  border: 1px solid #e8e3d8;
  border-radius: 8px;
  padding: 1.1rem 1rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.pr-highlight-card__ico { font-size: 1.8rem; }
.pr-highlight-card strong { font-size: .95rem; }
.pr-highlight-card p { font-size: .85rem; color: #555; margin: 0; line-height: 1.5; }
.pr-link-row { margin-top: 1.4rem; }

.ani-tv-card {
  border: 1px solid #eadfca;
  border-radius: 10px;
  padding: 1.2rem;
  background: linear-gradient(135deg, #fffdf8 0%, #f8f4ea 100%);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.ani-tv-card h4 {
  margin: 0 0 .55rem;
  font-size: 1.05rem;
}
.ani-tv-card p {
  margin: 0;
  font-size: .92rem;
  color: #555;
  line-height: 1.65;
}
.ani-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1rem;
}
.ani-kpi {
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ece7dc;
  padding: .9rem;
}
.ani-kpi strong {
  display: block;
  margin-bottom: .25rem;
  font-size: .92rem;
}
.ani-kpi span {
  display: block;
  color: #666;
  font-size: .84rem;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .ani-kpis { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pr-cols { flex-direction: column; }
}


/* ── Tarifs / Devis ────────────────────────────────────────────────────────── */
.tf-intro { font-style: italic; color: #666; margin-bottom: 1.4rem; }

.tf-errors {
  background: #fff3f3;
  border-left: 4px solid #c0392b;
  padding: .7rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 4px;
}
.tf-errors p { margin: .2rem 0; font-size: .9rem; color: #c0392b; }

/* Form */
.tf-form          { max-width: 680px; }
.tf-fieldset      { border: 1px solid #ddd; border-radius: 8px; padding: .8rem 1rem 1rem; margin-bottom: 1.2rem; }
.tf-fieldset legend { font-weight: 700; padding: 0 .4rem; font-size: .9rem; }
.tf-radio         { display: flex; align-items: center; gap: .5rem; padding: .3rem 0; cursor: pointer; }
.tf-radio input   { accent-color: var(--color_dore); width: 16px; height: 16px; }

.tf-form__grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.4rem; }
@media (max-width: 600px) { .tf-form__grid { grid-template-columns: 1fr; } }

.tf-label,
.ct-label         { display: flex; flex-direction: column; gap: .3rem; font-weight: 600; font-size: .9rem; }
.tf-label--full,
.ct-label--full   { grid-column: 1 / -1; }
.tf-label input,
.tf-label textarea,
.tf-label select  { padding: .5rem .7rem; border: 1px solid #ccc; border-radius: 4px; font-size: .95rem; width: 100%; box-sizing: border-box; }
.tf-label textarea { resize: vertical; }
.tf-hint          { font-weight: 400; font-size: .78rem; color: #888; }

/* Buttons */
.tf-btn {
  display: inline-block;
  padding: .6rem 1.5rem;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: opacity .2s, transform .15s;
  line-height: 1.4;
}
.tf-btn + .tf-btn       { margin-left: .6rem; }
.tf-btn:hover           { opacity: .87; transform: translateY(-1px); }
.tf-btn--gold           { background: var(--color_dore); color: #111; border-color: var(--color_dore); }
.tf-btn--outline        { background: transparent; color: #333; border-color: #bbb; }
.tf-btn--outline:hover  { border-color: var(--color_dore); color: #111; }
.tf-btn--sm             { padding: .35rem .9rem; font-size: .83rem; }

/* Devis result */
.tf-devis             { max-width: 760px; }
.tf-devis__header     { display: flex; align-items: center; justify-content: space-between; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.tf-devis__info       { font-size: .93rem; color: #444; }

.tf-recap             { border: 1px solid #e5e0d5; border-radius: 8px; overflow: hidden; margin-bottom: 1rem; }
.tf-recap__row        { display: flex; justify-content: space-between; align-items: center; padding: .65rem 1rem; gap: .5rem; border-bottom: 1px solid #f0ede5; font-size: .93rem; }
.tf-recap__row:last-child     { border-bottom: none; }
.tf-recap__row--option        { background: #f9fdf9; font-style: italic; }
.tf-recap__opt-price          { display: flex; align-items: center; gap: .5rem; white-space: nowrap; }
.tf-recap__total      { background: #fffde8; font-size: 1.05rem; font-weight: 700; }

.tf-rem-btn {
  background: none; border: 1px solid #ccc; border-radius: 50%;
  width: 20px; height: 20px; cursor: pointer; font-size: .7rem;
  display: inline-flex; align-items: center; justify-content: center;
  color: #c0392b; padding: 0;
}
.tf-rem-btn:hover { background: #fdecea; }

.tf-note     { font-size: .82rem; color: #999; margin-bottom: 1rem; }

.tf-details                   { border: 1px solid #ddd; border-radius: 6px; margin-bottom: 1.2rem; }
.tf-details summary            { cursor: pointer; padding: .6rem .9rem; font-weight: 600; font-size: .9rem; }
.tf-details__body              { padding: .5rem 1rem 1rem; font-size: .88rem; line-height: 1.6; border-top: 1px solid #eee; }
.tf-details__body h5           { margin: .8rem 0 .3rem; font-size: .9rem; }
.tf-details__body p            { margin: 0 0 .5rem; }

/* Options */
.tf-opts-title  { margin: 1.8rem 0 .8rem; font-size: 1.1rem; border-bottom: 1px solid #e5e5e5; padding-bottom: .4rem; }
.tf-opts-grid   { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }

.tf-opt-card {
  border: 1px solid #e5e0d5;
  border-radius: 8px;
  padding: .9rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  background: #fff;
  font-size: .88rem;
}
.tf-opt-card__name   { font-size: .95rem; }
.tf-opt-card__desc   { color: #666; flex: 1; line-height: 1.45; margin: 0; }
.tf-opt-card__footer { display: flex; justify-content: space-between; align-items: center; gap: .4rem; margin-top: .3rem; flex-wrap: wrap; }
.tf-opt-card__price  { font-weight: 700; color: #333; white-space: nowrap; }

/* Contact form devis summary */
.tf-contact-summary {
  background: #f5f0e8;
  border-left: 4px solid var(--color_dore);
  padding: .7rem 1rem;
  margin-bottom: 1.4rem;
  border-radius: 4px;
  font-size: .9rem;
}

/* Confirmation */
.tf-confirm,
.ct-confirm {
  text-align: center;
  padding: 3rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.tf-confirm__ico,
.ct-confirm__ico { font-size: 3.5rem; display: block; margin-bottom: .8rem; }
.tf-confirm h4,
.ct-confirm h3   { font-size: 1.4rem; margin: 0 0 .6rem; }
.tf-confirm p,
.ct-confirm p    { color: #555; margin-bottom: 1.5rem; }


/* ── Contact ──────────────────────────────────────────────────────────────────────── */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}
@media (max-width: 720px) { .ct-grid { grid-template-columns: 1fr; } }

.ct-info { display: flex; flex-direction: column; gap: 1rem; }

.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: #fff;
  border: 1px solid #e8e3d8;
  border-radius: 8px;
  padding: .9rem 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.ct-info-card__ico { font-size: 1.5rem; line-height: 1; }
.ct-info-card div  { display: flex; flex-direction: column; gap: .15rem; }
.ct-info-card strong { font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; color: #888; }
.ct-info-card a,
.ct-info-card span { font-size: .95rem; color: #222; text-decoration: none; }
.ct-info-card a:hover { color: var(--color_dore); text-decoration: underline; }

.ct-devis-hint {
  font-size: .88rem;
  color: #666;
  margin: .5rem 0 0;
}
.ct-devis-hint a { color: inherit; font-weight: 700; }
.ct-devis-hint a:hover { color: var(--color_dore); }

.ct-form { display: flex; flex-direction: column; gap: .9rem; }

.ct-label input,
.ct-label textarea {
  padding: .5rem .75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: .95rem;
  font-family: inherit;
  resize: vertical;
}
.ct-label input:focus,
.ct-label textarea:focus { outline: 2px solid var(--color_dore); border-color: var(--color_dore); }

.ct-required { color: #c0392b; }

/* ── Contact — modal d'information ──────────────────────────────────────── */
.ct-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 1rem;
}
.ct-modal__box {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.ct-modal__ico { font-size: 2.5rem; margin-bottom: .6rem; }
.ct-modal__box h4 { font-size: 1.15rem; margin: 0 0 .75rem; }
.ct-modal__box p  { color: #555; font-size: .91rem; margin-bottom: .65rem; line-height: 1.55; }
.ct-modal__btns { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.25rem; }

/* ── Contact — bouton révéler e-mail ─────────────────────────────────────── */
.ct-reveal-btn {
  background: none;
  border: 1px solid var(--color_dore, #c8a84b);
  border-radius: 5px;
  color: var(--color_dore, #c8a84b);
  cursor: pointer;
  font-size: .88rem;
  padding: .25rem .65rem;
  font-family: inherit;
  transition: background .2s, color .2s;
}
.ct-reveal-btn:hover { background: var(--color_dore, #c8a84b); color: #fff; }

/* ── Contact — notice d'information ─────────────────────────────────────── */
.ct-notice {
  background: #fdfaf3;
  border: 1px solid #e8d9a0;
  border-left: 4px solid var(--color_dore, #c8a84b);
  border-radius: 6px;
  padding: .75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: .88rem;
  color: #555;
  line-height: 1.55;
}
.ct-notice strong { color: #333; }
.ct-notice a { color: var(--color_dore, #c8a84b); font-weight: 700; }


/* ── Promotions — page publique ─────────────────────────────────────────── */
.promo-intro {
  margin-bottom: 1.6rem; color: var(--muted, #555);
}
.promo-intro .promo-link-tarif {
  margin-left: .6rem; color: var(--color_dore, #FFD700);
  font-weight: 600; text-decoration: none;
}
.promo-intro .promo-link-tarif:hover { text-decoration: underline; }

.promo-empty {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  padding: 3rem 1rem; color: var(--muted, #555); text-align: center;
}
.promo-empty__ico { font-size: 3rem; }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.promo-card {
  border: 2px solid var(--color_dore, #FFD700);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.promo-card__badge {
  background: var(--color_dore, #FFD700);
  color: #111;
  font-size: 1.4rem; font-weight: 900;
  text-align: center;
  padding: .6rem .5rem;
  letter-spacing: .5px;
}

.promo-card__body {
  padding: 1rem 1.1rem;
  flex: 1;
}

.promo-card__desc {
  margin: 0 0 .8rem; font-size: .95rem; color: #333;
}

.promo-card__code-wrap {
  display: flex; align-items: center; gap: .4rem;
  background: #f5f5f5; border-radius: 6px;
  padding: .45rem .7rem;
  margin-bottom: .5rem;
}

.promo-card__code {
  font-family: 'Courier New', monospace;
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: 1.5px;
  flex: 1;
}

.promo-copy-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; padding: 0 .2rem;
  transition: transform .15s;
}
.promo-copy-btn:hover { transform: scale(1.2); }

.promo-card__expire {
  font-size: .8rem; color: var(--muted, #777);
  margin: 0;
}

.promo-card__cta {
  display: block; text-align: center;
  background: #111; color: #fff;
  padding: .65rem .5rem;
  text-decoration: none; font-weight: 600;
  transition: background .2s;
}
.promo-card__cta:hover { background: var(--color_dore, #FFD700); color: #111; }


/* ── Tarifs — ligne de réduction promo ───────────────────────────────────── */
.tf-recap__row--promo {
  background: #fffde7;
  border-radius: 6px;
}
.tf-promo-val {
  color: #388e3c;
}


/* 
   LOCATION  Page publique
    */
.loc-intro { color: var(--muted); margin-bottom: 1.5rem; }
.loc-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .loc-layout { grid-template-columns: 1fr 380px; align-items: start; } }

/* Catalogue */
.loc-section-title { font-size: 1rem; font-weight: 700; margin: 0 0 .6rem; border-bottom: 2px solid var(--color_dore); padding-bottom: .3rem; }
.loc-category { margin-bottom: 2rem; }
.loc-cat-name  { font-size: 1rem; font-weight: 600; margin: 0 0 .75rem; color: var(--muted); }
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }

.loc-card { border: 2px solid #eee; border-radius: 8px; overflow: hidden; transition: border-color .2s, box-shadow .2s; background: #fff; }
.loc-card:hover { border-color: var(--color_dore); box-shadow: 0 2px 10px rgba(0,0,0,.1); }
.loc-card--selected { border-color: var(--color_dore) !important; background: #fffbea; }
.loc-card__img { height: 200px; overflow: hidden; background: #f5f5f5; display: flex; align-items: center; justify-content: center; position: relative; }
.loc-card__img img { width: 100%; height: 100%; object-fit: cover; }
.loc-card__img--placeholder { font-size: 2.5rem; color: #ccc; }
/* ── Slider multi-photos location ───────────────────────────────────────── */
.loc-slider { position: absolute; inset: 0; width: 100%; height: 100%; }
.loc-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease; z-index: 0; }
.loc-slide--active { opacity: 1; z-index: 1; }
.loc-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loc-slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; border: none; width: 28px; height: 28px; border-radius: 50%; font-size: 1.2rem; line-height: 1; cursor: pointer; z-index: 3; transition: background .15s; padding: 0; display: flex; align-items: center; justify-content: center; }
.loc-slider-prev { left: 5px; }
.loc-slider-next { right: 5px; }
.loc-slider-arrow:hover { background: rgba(0,0,0,.7); }
.loc-slider-dots { position: absolute; bottom: 5px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; z-index: 3; }
.loc-slider-dot { width: 7px; height: 7px; background: rgba(255,255,255,.55); border-radius: 50%; cursor: pointer; transition: background .15s; }
.loc-slider-dot--active { background: #fff; box-shadow: 0 0 0 1.5px rgba(0,0,0,.25); }
.loc-card__body { padding: .65rem .75rem; }
.loc-card__name { font-weight: 600; font-size: .9rem; margin-bottom: .25rem; }
.loc-card__desc { font-size: .78rem; color: var(--muted); margin-bottom: .4rem; line-height: 1.4; }
.loc-card__footer { display: flex; justify-content: space-between; align-items: center; gap: .4rem; flex-wrap: wrap; }
.loc-card__price { font-size: .82rem; font-weight: 700; color: var(--text); }
.loc-card__btn { font-size: .75rem; padding: .25rem .55rem; background: var(--color_dore); border: none; border-radius: 4px; cursor: pointer; font-family: inherit; font-weight: 600; transition: opacity .15s; }
.loc-card__btn:hover { opacity: .8; }

/* Panier sélection */
.loc-cart { background: #f9f9f9; border: 1px solid #eee; border-radius: 8px; padding: .75rem; margin-bottom: 1rem; min-height: 52px; }
.loc-cart__empty { color: #aaa; font-size: .85rem; margin: 0; }
.loc-cart__list { list-style: none; margin: 0; padding: 0; }
.loc-cart__item { display: flex; align-items: center; gap: .4rem; padding: .3rem 0; border-bottom: 1px solid #eee; font-size: .85rem; }
.loc-cart__item:last-child { border-bottom: none; }
.loc-cart__item span:first-child { flex: 1; }
.loc-cart__price { color: var(--muted); white-space: nowrap; }
.loc-cart__remove { background: none; border: none; cursor: pointer; color: #c62828; font-size: .8rem; padding: .1rem .3rem; border-radius: 3px; line-height: 1; }
.loc-cart__remove:hover { background: #fdecea; }

/* Formulaire */
.loc-form-wrap { position: sticky; top: calc(var(--header-h) + 16px); }
.loc-form { display: flex; flex-direction: column; gap: .6rem; }
.loc-hint { font-size: .75rem; color: #999; margin: -.25rem 0 0; }