/* ============================================
   LMG BIJOUX — Style Principal
   Concept : "L'or dort dans la pierre — le bijoutier le réveille."
   Palette : Noir profond / Or chaud / Ivoire cassé / Lavande Provence
   ============================================ */

:root {
  --noir: #0A0A0A;
  --noir-light: #141414;
  --or: #C9A84C;
  --or-light: #D4B96A;
  --or-dark: #A08030;
  --ivoire: #F5F0E8;
  --ivoire-dark: #E8E0D2;
  --lavande: #8B7EC8;
  --lavande-light: #A89DE0;
  --blanc: #FFFFFF;
  --gris: #6B6B6B;
  --gris-light: #9A9A9A;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  --nav-height: 72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--noir);
  color: var(--ivoire);
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: none;
  border: none;
  background: none;
}

/* ---- Custom Cursor (desktop only) ---- */
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--or);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              border-color 0.3s,
              background 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--or-light);
  background: rgba(201, 168, 76, 0.15);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--or);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .cursor-ring, .cursor-dot { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: transform 0.4s var(--ease-out-expo),
              background 0.4s;
}

.nav.hidden {
  transform: translateY(-100%);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(201, 168, 76, 0.15);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--or);
  letter-spacing: 0.08em;
  position: relative;
}

.nav__logo span {
  color: var(--ivoire);
  font-weight: 300;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav__link {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivoire-dark);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width 0.4s var(--ease-out-expo);
}

.nav__link:hover {
  color: var(--or);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__social {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(201, 168, 76, 0.15);
}

.nav__social a {
  color: var(--gris-light);
  transition: color 0.3s, transform 0.3s;
  display: flex;
}

.nav__social a:hover {
  color: var(--or);
  transform: scale(1.15);
}

.nav__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.2rem;
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--or);
  color: var(--or);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s, color 0.3s;
}

.nav__cta:hover {
  background: var(--or);
  color: var(--noir);
}

.nav__cta svg {
  flex-shrink: 0;
}

/* Mobile menu */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__burger span {
  width: 24px;
  height: 1.5px;
  background: var(--or);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
  transform-origin: center;
}

.nav__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.nav__mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ivoire);
  transition: color 0.3s;
}

.nav__mobile a:hover {
  color: var(--or);
}

.nav__mobile-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.nav__mobile-social a {
  font-size: 1rem;
}

.nav__mobile-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .nav__links, .nav__social, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ---- CTA Button ---- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--or);
  color: var(--noir);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo),
              box-shadow 0.3s;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s var(--ease-out-expo);
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--or);
  color: var(--or);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: background 0.4s, color 0.4s, transform 0.3s var(--ease-out-expo);
}

.btn-outline:hover {
  background: var(--or);
  color: var(--noir);
  transform: translateY(-2px);
}

/* ---- Mobile Sticky CTA ---- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  z-index: 998;
}

.mobile-cta .btn-cta {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.5rem;
}

@media (max-width: 768px) {
  .mobile-cta { display: block; }
}

/* ---- CTA Overlay ---- */
.cta-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(40px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}

.cta-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cta-overlay__content {
  text-align: center;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.6s var(--ease-out-expo);
}

.cta-overlay.open .cta-overlay__content {
  transform: translateY(0) scale(1);
}

.cta-overlay__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivoire);
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.cta-overlay__close:hover {
  color: var(--or);
  transform: rotate(90deg);
}

.cta-overlay__label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gris-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.cta-overlay__phone {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--or);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.2s var(--ease-out-expo),
              transform 0.6s 0.2s var(--ease-out-expo);
}

.cta-overlay.open .cta-overlay__phone {
  opacity: 1;
  transform: translateY(0);
}

.cta-overlay__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-overlay__actions .btn-outline {
  font-size: 0.85rem;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 4rem) clamp(2rem, 8vw, 8rem) 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.7) 70%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.hero__content {
  max-width: 700px;
  margin: 0 auto;
}

.hero__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.5rem 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s var(--ease-out-expo) forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ivoire);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.5s var(--ease-out-expo) forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--or);
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gris-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s var(--ease-out-expo) forwards;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s var(--ease-out-expo) forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gris);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 0.8s 1.2s var(--ease-out-expo) forwards;
  opacity: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--or);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Sections — Shared ---- */
section {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 6rem);
}

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--or);
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Artisan Section — Asymmetric ---- */
.artisan {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.artisan__text {
  padding-right: 2rem;
}

.artisan__desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gris-light);
  margin-bottom: 2rem;
}

.artisan__detail {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--or);
  border-left: 2px solid var(--or);
  padding-left: 1.5rem;
}

.artisan__image {
  position: relative;
  overflow: hidden;
}

/* artisan image styles moved to artisan__visual section */

@media (max-width: 768px) {
  .artisan {
    grid-template-columns: 1fr;
  }
  .artisan__text { padding-right: 0; order: 2; }
  .artisan__image { order: 1; }
}

/* ---- Boutique Section ---- */
.boutique {
  background: var(--noir);
}

.boutique__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.boutique__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.boutique__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  /* Recadrage : coupe les bordures noires et textes de la photo */
  scale: 1.35;
  filter: brightness(0.85);
  transition: filter 0.5s, scale 0.7s var(--ease-out-expo);
}

.boutique__img-wrap:hover .boutique__img {
  filter: brightness(0.95);
  scale: 1.4;
}

.boutique__text {
  padding-right: 2rem;
}

.boutique__desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gris-light);
  margin-bottom: 2rem;
}

.boutique__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .boutique__inner {
    grid-template-columns: 1fr;
  }

  .boutique__text {
    padding-right: 0;
    order: 2;
    text-align: center;
  }

  .boutique__text .section-tag,
  .boutique__text .section-title {
    text-align: center;
  }

  .boutique__actions {
    justify-content: center;
  }
}

/* ---- Creations Section ---- */
.creations {
  background: var(--noir-light);
}

.creations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1300px;
  margin: 3rem auto 0;
}

.creation-card {
  position: relative;
  overflow: hidden;
  background: var(--noir);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s, box-shadow 0.4s;
}

.creation-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.creation-card__content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.9) 40%);
}

.creation-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.creation-card__desc {
  font-size: 0.82rem;
  color: var(--gris-light);
  line-height: 1.6;
}

/* --- Photos à fond clair : vignette sombre pour intégration au thème --- */
.creation-card--light::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center 40%, transparent 35%, rgba(10, 10, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, transparent 30%, transparent 55%, rgba(10, 10, 10, 0.9) 100%);
}

.creation-card--light .creation-card__img {
  filter: brightness(0.75) contrast(1.1) saturate(1.1);
}

.creation-card--light:hover .creation-card__img {
  filter: brightness(0.85) contrast(1.1) saturate(1.1);
}

/* === Responsive Créations === */
@media (max-width: 1024px) {
  .creations__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .creations__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .creation-card {
    aspect-ratio: 3/4;
  }
}


/* ---- Repair / Creation Split ---- */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  overflow: hidden;
}

.services__header {
  grid-column: 1 / -1;
  padding: clamp(4rem, 8vw, 7rem) 2rem clamp(2rem, 4vw, 3rem);
  background: var(--noir);
}

.services__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}

.services__panel--repair {
  background: var(--noir-light);
  border-right: 1px solid rgba(201, 168, 76, 0.08);
}

.services__panel--create {
  background: var(--noir);
}

.services__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.services__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gris-light);
  max-width: 400px;
  margin-bottom: 2rem;
}

.services__line {
  width: 60px;
  height: 1px;
  background: var(--or);
}

@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
  }
}

/* ---- Testimonials ---- */
.avis {
  background: var(--noir-light);
  text-align: center;
}

.avis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.avis-card {
  background: var(--noir);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
}

.avis-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
}

.avis-card__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--or);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}

.avis-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ivoire-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.avis-card__footer {
  margin-top: auto;
}

.avis-card__author {
  font-size: 0.82rem;
  color: var(--or);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.avis-card__stars {
  color: var(--or);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .avis__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Infos Section ---- */
.infos {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.infos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  /* Même hauteur pour les deux cartes */
  align-items: stretch;
}

/* ---- Cartes Infos ---- */
.infos__card {
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.9) 0%, rgba(15, 15, 15, 1) 100%);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
}

.infos__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.infos__card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.infos__card:hover::before {
  opacity: 0.6;
}

.infos__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.infos__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--or);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.infos__card:hover .infos__card-icon {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.infos__card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ivoire);
}

/* ---- Tableau Horaires ---- */
.horaires__table {
  width: 100%;
  border-collapse: collapse;
}

.horaires__table tr {
  border-bottom: 1px solid rgba(201, 168, 76, 0.05);
  transition: background 0.3s;
}

.horaires__table tr:hover {
  background: rgba(201, 168, 76, 0.03);
}

.horaires__table tr:last-child {
  border-bottom: none;
}

.horaires__table td {
  padding: 0.9rem 0.5rem;
  font-size: 0.92rem;
}

.horaires__table td:first-child {
  color: var(--ivoire);
  font-weight: 500;
}

.horaires__table td:last-child {
  color: var(--gris-light);
  text-align: right;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.horaires__sep {
  color: rgba(201, 168, 76, 0.25);
  margin: 0 0.1rem;
}

.horaires__table tr.today {
  background: rgba(201, 168, 76, 0.04);
}

.horaires__table tr.today td:first-child {
  color: var(--or);
  position: relative;
  padding-left: 1.2rem;
}

.horaires__table tr.today td:first-child::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--or);
  box-shadow: 0 0 6px rgba(201, 168, 76, 0.5);
}

.horaires__table tr.today td:last-child {
  color: var(--or);
  font-weight: 500;
}

.horaires__closed td:last-child {
  color: rgba(201, 168, 76, 0.3);
  font-style: italic;
}

.horaires__note {
  font-size: 0.78rem;
  color: var(--gris);
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  font-style: italic;
}

/* ---- Contact Items ---- */
.infos__items {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  flex: 1;
}

.infos__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(201, 168, 76, 0.02);
  border-left: 2px solid rgba(201, 168, 76, 0.12);
  transition: background 0.3s, border-color 0.3s;
}

.infos__item:hover {
  background: rgba(201, 168, 76, 0.05);
  border-left-color: var(--or);
}

.infos__item-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  flex-shrink: 0;
}

.infos__item-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gris-light);
}

.infos__item-text strong {
  color: var(--ivoire);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.infos__item-text a {
  color: var(--or);
  transition: color 0.3s;
}

.infos__item-text a:hover {
  color: var(--or-light);
}

.infos__dot {
  color: rgba(201, 168, 76, 0.3);
  margin: 0 0.3rem;
}

.infos__cta {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .infos__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .infos__card {
    padding: 2rem 1.5rem;
  }
}

/* ---- Map Section ---- */
.acces {
  background: var(--noir-light);
}

.acces__box {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.acces__map {
  min-height: 400px;
}

.acces__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.6) brightness(0.8) contrast(1.1);
  transition: filter 0.5s;
}

.acces__map:hover iframe {
  filter: grayscale(0.2) brightness(0.9);
}

.acces__info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  background: var(--noir);
}

.acces__address {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--ivoire);
}

.acces__phone {
  font-size: 1.1rem;
  color: var(--or);
}

@media (max-width: 768px) {
  .acces__box {
    grid-template-columns: 1fr;
  }
  .acces__map { min-height: 300px; }
}

/* ---- Footer ---- */
.footer {
  padding: 0 clamp(1.5rem, 6vw, 6rem) 2rem;
  background: linear-gradient(180deg, var(--noir) 0%, #060606 100%);
}

.footer__divider {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__col--brand {
  padding-right: 2rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ivoire);
}

.footer__brand span {
  color: var(--or);
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(201, 168, 76, 0.5);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer__address {
  font-size: 0.82rem;
  color: var(--gris);
  margin-top: 1.2rem;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--or);
  margin-bottom: 1.2rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__link {
  font-size: 0.82rem;
  color: var(--gris);
  letter-spacing: 0.03em;
  transition: color 0.3s, padding-left 0.3s;
}

.footer__link:hover {
  color: var(--or);
  padding-left: 4px;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--gris);
  transition: color 0.3s;
}

.footer__social svg {
  flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
}

.footer__social:hover {
  color: var(--or);
}

.footer__social:hover svg {
  transform: scale(1.15);
  color: var(--or);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer__easter {
  font-family: var(--font-display);
  font-size: 0.55rem;
  color: rgba(201, 168, 76, 0.12);
  letter-spacing: 0.15em;
  cursor: default;
  user-select: none;
  transition: color 0.5s;
}

.footer__easter:hover {
  color: rgba(201, 168, 76, 0.25);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__socials {
    align-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Easter egg popup */
.easter-popup {
  position: fixed;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--noir-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem 2.5rem;
  text-align: center;
  z-index: 5000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}

.easter-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.easter-popup__svg {
  margin-bottom: 1rem;
}

.easter-popup__text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--or);
}

/* ---- Parallax Container ---- */
.parallax-wrap {
  overflow: hidden;
  position: relative;
}

.parallax-el {
  will-change: transform;
}

/* ---- Gold Divider ---- */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  margin: 0 auto;
}

/* ---- Hero Image ---- */
.hero__img {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  object-fit: cover;
  object-position: center 55%;
  filter: blur(6px) brightness(0.7);
}

@media (max-width: 768px) {
  .hero__img {
    object-position: 60% 50%;
  }
}

/* ---- Artisan Photo ---- */
.artisan__visual {
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.artisan__visual::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}

.artisan__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.7s var(--ease-out-expo), filter 0.7s;
}

.artisan__visual:hover .artisan__photo {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}

.artisan__photo-border {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  pointer-events: none;
  transition: transform 0.5s var(--ease-out-expo);
}

.artisan__visual:hover .artisan__photo-border {
  transform: translate(-4px, 4px);
}

/* ---- Boutique Band ---- */
.boutique {
  padding: 0;
  position: relative;
}

.boutique__img-wrapper {
  position: relative;
  width: 100%;
  max-height: 50vh;
  overflow: hidden;
}

.boutique__img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  filter: brightness(0.6);
  transition: filter 0.5s;
}

.boutique__img-wrapper:hover .boutique__img {
  filter: brightness(0.7);
}

.boutique__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem clamp(2rem, 8vw, 8rem);
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.85));
}

.boutique__caption p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ivoire);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ---- Creation Card Image ---- */
.creation-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo), filter 0.5s;
  filter: brightness(0.5) contrast(1.05);
}

.creation-card:hover .creation-card__img {
  transform: scale(1.06);
  filter: brightness(0.65) contrast(1.05);
}


/* ---- Legal Pages ---- */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--or);
  margin-bottom: 2rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ivoire);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal p,
.legal li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gris-light);
  margin-bottom: 0.8rem;
}

.legal a {
  color: var(--or);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  transition: border-color 0.3s;
}

.legal a:hover {
  border-color: var(--or);
}

.legal ul {
  padding-left: 1.5rem;
  list-style: disc;
}

/* ---- Utility ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Loader (page entry) ---- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo);
}

.loader.done {
  opacity: 0;
  pointer-events: none;
}

.loader__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--or);
  letter-spacing: 0.2em;
  overflow: hidden;
}

.loader__text span {
  display: inline-block;
  animation: loaderChar 0.6s var(--ease-out-expo) forwards;
  opacity: 0;
  transform: translateY(100%);
}

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