/* ===== Alexis Grillz — style.css ===== */

:root {
  --black: #121212;
  --white: #f7f7f5;
  --gray-900: #111111;
  --gray-700: #2b2b2b;
  --gray-400: #8a8a8a;
  --gray-200: #d8d8d5;
  --gray-100: #ececea;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-accent: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-narrow { max-width: 760px; }

.section { padding: 96px 0; }
.section-alt { background: var(--black); color: var(--white); }

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-accent);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  line-height: 1;
}

.section-sub, .tarifs-note {
  color: var(--gray-400);
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 15px;
}
.section-alt .section-sub { color: var(--gray-200); }

/* ===== Header (léger, sticky — inspiré d'une boutique épurée) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,247,245,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img { display: block; height: 48px; width: auto; }
.logo span { font-weight: 300; opacity: 0.55; margin-left: 4px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity 0.2s;
}
.main-nav a:hover { opacity: 0.55; }
.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 2px;
}
.nav-cta:hover { opacity: 0.85 !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  -webkit-appearance: none;
  appearance: none;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .logo img { height: 36px; }
}

/* ===== Hero — grand visuel plein cadre façon macro-photo ===== */
.hero {
  position: relative;
  height: 82vh;
  min-height: 480px;
  overflow: hidden;
  background-color: var(--black);
  background-image: url('../img/heroo.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-media { position: absolute; inset: 0; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent; /* removed gradient so hero image shows */
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 24px;
}
.hero-placeholder span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-200);
  font-weight: 600;
}
.hero-placeholder p {
  font-size: 13px;
  max-width: 320px;
  color: var(--gray-400);
}
.hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 24px 44px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
  text-align: center;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-200);
  margin-bottom: 10px;
}
.hero h1 {
  font-family: var(--font-accent);
  font-size: clamp(40px, 8vw, 84px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

/* ===== Grillz Custom ? — bandeau CTA Instagram ===== */
.custom-cta {
  padding: 72px 24px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.custom-cta h2 {
  font-family: var(--font-accent);
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.custom-cta p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
}
.link-insta {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 4 / 5;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.placeholder span {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.gallery-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
}

/* ===== Infos ===== */
.infos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-700);
  margin-bottom: 56px;
}
.info-card {
  background: var(--black);
  padding: 32px 24px;
}
.info-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gray-400);
  display: block;
  margin-bottom: 16px;
}
.info-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.info-card p {
  font-size: 14px;
  color: var(--gray-200);
}

.info-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
}

/* ===== Localisation empreinte (Martinique/Guadeloupe/autres pays) ===== */
.locations-block {
  border-top: 1px solid var(--gray-700);
  padding-top: 40px;
  margin-bottom: 56px;
}
.locations-block h3 {
  font-family: var(--font-accent);
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.location-card {
  background: #1a1a1a;
  border: 1px solid var(--gray-700);
  padding: 24px;
}
.location-card h4 {
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.location-card p {
  font-size: 14px;
  color: var(--gray-200);
  margin-bottom: 10px;
}
.location-list { margin-bottom: 12px; }
.location-list li {
  font-size: 14px;
  color: var(--gray-200);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-700);
}
.location-list li:last-child { border-bottom: none; }
.location-list a { text-decoration: underline; text-underline-offset: 3px; }
.location-note {
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 4px;
  margin-bottom: 0 !important;
}

.infos-cta {
  border-top: 1px solid var(--gray-700);
  padding-top: 40px;
}
.infos-cta h3 {
  font-family: var(--font-accent);
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.order-steps { counter-reset: step; max-width: 620px; }
.order-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 40px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--gray-200);
}
.order-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
}

/* ===== Produits — grille catalogue façon boutique ===== */
.currency-toggle {
  display: inline-flex;
  border: 1px solid var(--black);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 40px;
}
.curr-btn {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--white);
  color: var(--black);
}
.curr-btn.active {
  background: var(--black);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.product-card { text-align: left; }
.product-thumb {
  aspect-ratio: 1 / 1;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb span {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.product-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.product-price {
  font-size: 14px;
  color: var(--gray-700);
}
.product-price .price {
  font-family: var(--font-body);
  font-weight: 700;
}

.detail-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-200);
  padding-top: 32px;
}

.pricing-table {
  width: 100%;
  border-top: 1px solid var(--black);
  margin-bottom: 40px;
}
.pricing-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
}
.pricing-head {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  font-weight: 600;
  border-bottom: 1px solid var(--black);
}
.row-label { font-weight: 600; font-size: 15px; }
.pricing-row .price {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.01em;
}

.pricing-extra {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-top: 1px solid var(--gray-200);
  padding-top: 32px;
}
.extra-item h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.extra-item p { font-size: 14px; color: var(--gray-700); }
.extra-item .price { font-family: var(--font-body); font-weight: 700; }

/* ===== Booking form ===== */
.booking-form {
  max-width: 720px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--gray-700);
  color: var(--white);
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 2px;
}
.form-group select option { color: var(--black); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--white);
}
.form-group-full { margin-bottom: 24px; }
.btn-submit { border: none; }
.form-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-200);
}
.form-note.success { color: #9fe6a0; }
.form-note.error { color: #e6a09f; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ===== Policy ===== */
.policy-content p { margin-bottom: 20px; font-size: 15px; color: var(--gray-700); }
.policy-list { margin-bottom: 24px; }
.policy-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  color: var(--gray-700);
}
.policy-contact { font-style: italic; color: var(--gray-400) !important; }

/* ===== Contact — deux colonnes, photo + Instagram ===== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.contact-photo {
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-photo span {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.contact-info h3 {
  font-family: var(--font-accent);
  font-size: 30px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 24px;
}
.contact-info .btn { margin-bottom: 20px; }
.contact-alt p { margin-bottom: 0; font-size: 14px; }
.contact-alt a { text-decoration: underline; text-underline-offset: 3px; }

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover { opacity: 0.85; }
.section-alt .btn-primary { background: var(--white); color: var(--black); }

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand p { color: var(--gray-400); margin-top: 12px; font-size: 14px; }
.footer-links h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; }
.footer-links a:hover { opacity: 0.6; }
.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 63px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-150%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-cta { margin-top: 4px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .infos-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-row { grid-template-columns: 1.4fr repeat(4, 1fr); gap: 8px; font-size: 13px; }
  .pricing-row .price { font-size: 15px; }
  .pricing-extra { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .pricing-table { overflow-x: auto; }
  .pricing-row { grid-template-columns: 1.2fr repeat(4, 0.85fr); min-width: 520px; }
  .hero { height: 68vh; }
}

/* ===== Catalogue complet (fiches produit individuelles) ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.catalog-thumb {
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  overflow: hidden;
}
.catalog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.catalog-info {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.catalog-info h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.catalog-desc {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
}
.catalog-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
}
.catalog-prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
}
.catalog-prices .row-label { color: var(--gray-700); }
.catalog-prices .price {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.catalog-note {
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 6px;
}
.catalog-request {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .catalog-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ===== Transitions douces entre les blocs (fondu + glissement au scroll) ===== */
.js .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cartes de grille (galerie, catalogue, infos) : même fondu, en cascade */
.js .gallery-item,
.js .catalog-card,
.js .info-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease,
              background 0.3s ease;
  transition-delay: calc(var(--reveal-i, 0) * 60ms);
}
.gallery-item.is-visible,
.catalog-card.is-visible,
.info-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Micro-interactions au survol, dans le même esprit que le reste du site */
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.10);
  border-color: var(--black);
}
.gallery-item img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover { border-color: var(--black); }
.info-card:hover { background: #1a1a1a; }

.btn { transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.btn-primary:hover { transform: translateY(-2px); }

/* Entrée du hero au chargement de la page */
.hero-eyebrow,
.hero h1 {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-eyebrow { animation-delay: 0.2s; }
.hero h1 { animation-delay: 0.4s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Accessibilité : désactive les animations si "mouvement réduit" est activé côté visiteur */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .gallery-item,
  .catalog-card,
  .info-card,
  .hero-eyebrow,
  .hero h1,
  .gallery-item img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== Page "À propos" — La Maison / Biographie du fondateur ===== */
.bio-center { text-align: center; }
.bio-center .section-eyebrow { text-align: center; }
.bio-hero .section-title { margin-left: auto; margin-right: auto; }
.bio-sub {
  color: var(--gray-700);
  max-width: 640px;
  margin: 0 auto 0;
  font-size: 16px;
  line-height: 1.8;
}
.bio-text-section .bio-sub { margin-bottom: 40px; }
.bio-photo-section { padding-top: 0; }
.bio-figure {
  margin: 0 auto;
  max-width: 460px;
}
.bio-figure-frame {
  background: var(--white);
  padding: 16px 16px 52px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}
.bio-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.bio-figure figcaption {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 600;
}
.bio-tagline {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 600;
}
.main-nav a.active {
  opacity: 1;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

@media (max-width: 600px) {
  .bio-figure-frame { padding: 10px 10px 36px; }
}

/* ===== Contact — boutons réseaux sociaux (Instagram + TikTok) ===== */
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-socials .btn { margin-bottom: 0; }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ===== Infos — bannière photo du salon (sous les cartes de localisation empreinte) ===== */
.salon-banner {
  position: relative;
  margin-top: 32px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-700);
}
.salon-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.salon-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(18,18,18,0.10) 0%, rgba(18,18,18,0.60) 100%);
}
.salon-banner-title {
  font-family: var(--font-accent);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}

@media (max-width: 700px) {
  .salon-banner { aspect-ratio: 3 / 4; }
}

/* ===== Catalogue — slider photo (fiche à plusieurs finitions/photos) ===== */
.thumb-slider { position: relative; }
.thumb-slider .thumb-slides {
  position: relative;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.thumb-slider .thumb-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: grab;
  -webkit-user-drag: none;
  user-drag: none;
}
.thumb-slider .thumb-slides img.is-active { opacity: 1; }
.thumb-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.thumb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(247,247,245,0.55);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.thumb-dot.is-active { background: var(--white); transform: scale(1.2); }
.thumb-dot:hover { background: rgba(247,247,245,0.85); }
