/* ══════════════════════════════════════════════
   BIJOUTERIE MIGNOT — style.css
   Ambiance : lumineuse, aérée, joaillerie haut de gamme
   Fond dominant : blanc cassé — or en accent — noir pour titres seulement
   ══════════════════════════════════════════════ */

/* ─── Variables ───────────────────────────────── */
:root {
  --or:        #c9a84c;
  --or-clair:  #dfc07a;
  --or-fonce:  #a07830;
  --noir:      #1a1814;       /* titres, texte fort */
  --texte:     #3d3a35;       /* corps de texte */
  --doux:      #7a746c;       /* secondaire */
  --bg:        #faf8f5;       /* fond principal */
  --bg-creme:  #f4f0ea;       /* sections alternées */
  --bg-card:   #ffffff;
  --bordure:   rgba(201,168,76,0.18);

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Jost', 'Helvetica Neue', sans-serif;

  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 2rem;
  --s4: 4rem;
  --s5: 7rem;

  --ease: cubic-bezier(.25,.46,.45,.94);
  --dur:  0.35s;
  --dur2: 0.65s;

  --ombre:  0 2px 20px rgba(26,24,20,0.06);
  --ombre2: 0 8px 40px rgba(26,24,20,0.10);
  --r: 4px;
  --wrap: 1180px;
}

/* ─── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body   { font-family: var(--sans); font-weight: 300; font-size: 16px; background: var(--bg); color: var(--texte); line-height: 1.75; overflow-x: hidden; }
img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; transition: color var(--dur) ease; }
ul,ol  { list-style: none; }
address{ font-style: normal; }
:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; }

/* ─── Utilitaires ─────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s3);
}

.eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: var(--s2);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--noir);
  margin-bottom: var(--s2);
}
h2 em { font-style: italic; color: var(--or-fonce); font-weight: 400; }

.rule {
  display: block;
  width: 52px; height: 1px;
  background: var(--or);
  margin-top: var(--s2);
}
.rule--center { margin-left: auto; margin-right: auto; }

.section-head {
  text-align: center;
  margin-bottom: var(--s4);
}

/* ─── Boutons ─────────────────────────────────── */
.btn-gold {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  background: var(--or);
  color: #fff;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background var(--dur) ease, transform var(--dur) ease, box-shadow var(--dur) ease;
}
.btn-gold:hover {
  background: var(--or-fonce);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: var(--noir);
  border: 1px solid var(--or);
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--dur) ease;
}
.btn-outline:hover {
  background: var(--or);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 var(--s3);
  background: transparent;
  transition: background var(--dur2) var(--ease), box-shadow var(--dur2) var(--ease);
}
.header.scrolled {
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2), 0 4px 20px rgba(26,24,20,0.07);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; max-width: var(--wrap);
  margin: 0 auto;
}

/* Logo */
.header__logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--or);
  line-height: 1.15;
  transition: opacity var(--dur) ease;
}
.header__logo:hover { opacity: 0.75; }
.header__logo span {
  display: block;
  font-family: var(--sans);
  font-size: 0.48rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--or-fonce);
  margin-top: 2px;
  opacity: 0.7;
}

/* Nav desktop */
.header__nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.header__nav a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur) ease;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--or);
  transition: width var(--dur) var(--ease);
}
.header__nav a:hover            { color: var(--or); }
.header__nav a:hover::after     { width: 100%; }

/* Sur fond hero (avant scroll) */
.header:not(.scrolled) .header__nav a { color: rgba(250,248,245,0.85); }
.header:not(.scrolled) .header__nav a:hover { color: var(--or-clair); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none; border: none; cursor: pointer;
}
.burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--bg);
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}
.header.scrolled .burger span { background: var(--noir); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Menu mobile */
.menu-mobile {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(300px, 85vw);
  background: var(--bg);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform var(--dur2) var(--ease);
  box-shadow: -8px 0 40px rgba(26,24,20,0.12);
}
.menu-mobile.open { transform: translateX(0); }
.menu-mobile ul   { display: flex; flex-direction: column; gap: 1.6rem; padding: var(--s3); }
.menu-mobile a    { font-family: var(--serif); font-size: 1.25rem; color: var(--noir); transition: color var(--dur) ease; }
.menu-mobile a:hover { color: var(--or); }

.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(26,24,20,0.45);
  z-index: 199;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur2) ease;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 112%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,9,8,0.35) 0%,
    rgba(10,9,8,0.50) 50%,
    rgba(10,9,8,0.60) 100%
  );
}

.hero__body {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 var(--s3);
  max-width: 700px;
  animation: fadeUp 1s var(--ease) 0.2s both;
}
.hero__body .eyebrow { color: var(--or-clair); }
.hero__body h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 500;
  line-height: 1.12;
  color: #fff;
  margin-bottom: var(--s3);
}
.hero__body h1 em { font-style: italic; color: var(--or-clair); font-weight: 400; }
.hero__sub {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.8rem;
}

/* Indicateur scroll */
.hero__line {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, var(--or-clair));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   PRÉSENTATION
═══════════════════════════════════════════════ */
.about {
  padding: var(--s5) 0;
  background: var(--bg);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--ombre2);
}
/* Encadrement doré décoratif */
.about__img-wrap::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: var(--r);
  z-index: -1;
}

.about__text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--texte);
  margin-top: var(--s3);
}
.about__text .btn-outline { margin-top: var(--s3); }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services {
  padding: var(--s5) 0;
  background: var(--bg-creme);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  padding: 2.4rem 2rem;
  border-bottom: 2px solid var(--bordure);
  box-shadow: var(--ombre);
  border-radius: var(--r);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) ease;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) ease;
}
.card.visible {
  opacity: 1;
  transform: translateY(0);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre2);
  border-bottom-color: var(--or);
}
.card:nth-child(2) { transition-delay: 0.07s; }
.card:nth-child(3) { transition-delay: 0.14s; }
.card:nth-child(4) { transition-delay: 0.07s; }
.card:nth-child(5) { transition-delay: 0.14s; }
.card:nth-child(6) { transition-delay: 0.21s; }

.card__ico {
  width: 42px; height: 42px;
  color: var(--or);
  margin-bottom: 1.4rem;
  transition: transform 0.3s var(--ease);
}
.card:hover .card__ico { transform: scale(1.08); }

.card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 0.55rem;
}
.card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--doux);
}

/* ═══════════════════════════════════════════════
   GALERIE
═══════════════════════════════════════════════ */
.gallery {
  padding: var(--s5) 0;
  background: var(--bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 255px 255px;
  gap: 1rem;
}
.gitem--tall { grid-row: span 2; }
.gitem--wide { grid-column: span 2; }

.gitem {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--bg-creme);
}
.gitem img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gitem:hover img { transform: scale(1.05); }

.gitem figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.4rem 1rem;
  background: linear-gradient(to top, rgba(20,18,14,0.72) 0%, transparent 100%);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gitem:hover figcaption { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   CITATION
═══════════════════════════════════════════════ */
.quote {
  padding: var(--s5) 0;
  background: var(--bg-creme);
}
.quote__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.quote__mark {
  display: block;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--or);
  opacity: 0.25;
  margin-bottom: var(--s3);
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--noir);
  margin-bottom: var(--s3);
}
.quote blockquote em { font-style: italic; color: var(--or-fonce); }
.quote cite {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--doux);
  margin-top: var(--s3);
  font-style: normal;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact {
  padding: var(--s5) 0;
  background: var(--bg);
}

/* 3 cartes d'action cliquables */
.contact__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.8rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid #e8e4dc;
  border-radius: 8px;
  box-shadow: var(--ombre);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) ease;
  cursor: pointer;
}
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre2);
  border-color: var(--or);
}

.cta-card--gold {
  background: var(--or);
  border-color: var(--or);
}
.cta-card--gold:hover {
  background: var(--or-fonce);
  border-color: var(--or-fonce);
}

.cta-card__icon {
  width: 40px; height: 40px;
  background: var(--bg-creme);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--or);
  flex-shrink: 0;
  transition: background var(--dur) ease;
}
.cta-card--gold .cta-card__icon {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

.cta-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.cta-card__label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--doux);
}
.cta-card--gold .cta-card__label { color: rgba(255,255,255,0.7); }

.cta-card__text strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--noir);
  line-height: 1.2;
}
.cta-card--gold .cta-card__text strong { color: #fff; }

.cta-card__text span {
  font-size: 0.82rem;
  color: var(--doux);
}
.cta-card--gold .cta-card__text span { color: rgba(255,255,255,0.75); }

.cta-card__action {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or);
  margin-top: 0.4rem;
  transition: gap var(--dur) ease;
}
.cta-card--gold .cta-card__action { color: rgba(255,255,255,0.9); }
.cta-card:hover .cta-card__action { gap: 0.7rem; }
.cta-card__action svg { width: 14px; height: 14px; }

/* Grille carte + horaires */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact__map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--ombre2);
  height: 380px;
  background: var(--bg-creme);
}
.contact__map iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

/* Panel horaires */
.contact__hours-panel { display: flex; }

.hours-panel {
  flex: 1;
  background: var(--noir);
  border-radius: 8px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hours-panel__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hours-panel__head svg {
  width: 20px; height: 20px;
  color: var(--or); flex-shrink: 0;
}
.hours-panel__head h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.hours-panel__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-panel__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}
.hours-panel__list li:last-child { border-bottom: none; }

.day {
  min-width: 80px;
  color: rgba(250,248,245,0.65);
  font-weight: 400;
}
.dot-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg, rgba(201,168,76,0.3) 0px, rgba(201,168,76,0.3) 3px,
    transparent 3px, transparent 8px
  );
}
.time { color: rgba(250,248,245,0.45); font-size: 0.84rem; }
.open-day .time { color: rgba(250,248,245,0.7); }
.closed-day .time { font-style: italic; color: rgba(250,248,245,0.3); }

.hours-panel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  background: var(--or);
  color: #fff;
  border-radius: 4px;
  transition: background var(--dur) ease, transform var(--dur) ease;
  margin-top: auto;
}
.hours-panel__btn svg { width: 16px; height: 16px; }
.hours-panel__btn:hover { background: var(--or-fonce); transform: translateY(-1px); }


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background: #18160f; color: rgba(250,248,245,0.55); }

/* Bandeau d'appel à l'action en haut */
.footer__banner {
  background: var(--or);
  padding: 1.4rem 0;
}
.footer__banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}
.footer__banner-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #fff;
  font-weight: 400;
}
.footer__banner-text em { font-style: italic; font-weight: 500; }

.footer__banner-btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  background: #fff;
  color: var(--or-fonce);
  border-radius: 4px;
  transition: background var(--dur) ease, color var(--dur) ease, transform var(--dur) ease;
  flex-shrink: 0;
}
.footer__banner-btn svg { width: 16px; height: 16px; }
.footer__banner-btn:hover { background: var(--noir); color: var(--or-clair); transform: translateY(-1px); }

/* Corps principal 4 colonnes */
.footer__main { padding: var(--s4) 0; }

.footer__main-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: var(--s4);
  align-items: start;
}

/* Colonne brand */
.footer__col--brand { border-right: 1px solid rgba(201,168,76,0.12); padding-right: var(--s4); }

.footer__logo {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--or);
  letter-spacing: 0.01em;
  margin-bottom: var(--s2);
}
.footer__logo-rule {
  width: 36px; height: 1px;
  background: rgba(201,168,76,0.4);
  margin-bottom: var(--s2);
}
.footer__tagline {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(250,248,245,0.45);
  line-height: 1.65;
  margin-bottom: var(--s3);
}
.footer__rcs {
  font-size: 0.7rem;
  color: rgba(250,248,245,0.2);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

/* Titre de colonne */
.footer__col-title {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--or);
  opacity: 0.85;
  margin-bottom: 1.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

/* Nav footer */
.footer__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a {
  font-size: 0.88rem;
  color: rgba(250,248,245,0.45);
  transition: color var(--dur) ease, padding-left var(--dur) ease;
  display: block;
}
.footer__nav a:hover { color: var(--or-clair); padding-left: 5px; }

/* Horaires footer */
.footer__hours { display: flex; flex-direction: column; gap: 0; }
.footer__hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.86rem;
}
.footer__hours li:last-child { border-bottom: none; }
.footer__hours li span:first-child { color: rgba(250,248,245,0.55); }
.footer__hours li span:last-child  { color: rgba(250,248,245,0.35); }
.footer__hours--closed span { color: rgba(250,248,245,0.22) !important; font-style: italic; }

.footer__open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: #6fcf72;
  margin-top: 1rem;
  font-weight: 400;
}
.footer__open-dot {
  width: 7px; height: 7px;
  background: #6fcf72;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* Infos footer */
.footer__info { display: flex; flex-direction: column; gap: 0.9rem; }
.footer__info li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.86rem;
  color: rgba(250,248,245,0.42);
  line-height: 1.65;
}
.footer__info svg {
  width: 15px; height: 15px;
  color: var(--or); flex-shrink: 0; margin-top: 2px;
}
.footer__info a { color: rgba(250,248,245,0.42); transition: color var(--dur) ease; }
.footer__info a:hover { color: var(--or-clair); }

/* Barre copyright */
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between; align-items: center;
  padding: 1.1rem var(--s3);
  font-size: 0.68rem;
  color: rgba(250,248,245,0.18);
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLETTE ≤ 768px
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --s5: 4rem; --s4: 2.5rem; }

  /* Header */
  .header__nav { display: none; }
  .burger       { display: flex; }

  /* À propos */
  .about__grid  { grid-template-columns: 1fr; gap: var(--s4); }
  .about__img-wrap img { height: 320px; }

  /* Services */
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Galerie */
  .gallery__grid  { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gitem--tall    { grid-row: span 1; }
  .gitem--wide    { grid-column: span 2; }
  .gitem img      { min-height: 200px; }

  /* Contact */
  .contact__actions { grid-template-columns: 1fr; }
  .contact__grid    { grid-template-columns: 1fr; }
  .contact__map     { height: 300px; }

  /* Footer */
  .footer__banner-inner { flex-direction: column; text-align: center; gap: var(--s2); }
  .footer__banner-btn   { align-self: center; }
  .footer__main-inner   { grid-template-columns: 1fr 1fr; gap: var(--s3); }
  .footer__col--brand   { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); padding-right: 0; padding-bottom: var(--s3); grid-column: span 2; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 480px
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --s5: 3rem; --s4: 2rem; }

  .hero__body h1    { font-size: 2.3rem; }
  .contact__actions { grid-template-columns: 1fr; }
  .contact__map     { height: 260px; }

  /* Footer */
  .footer__main-inner { grid-template-columns: 1fr; }
  .footer__col--brand { grid-column: span 1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 0.3rem; }

  .btn-gold,
  .btn-outline      { display: block; width: 100%; text-align: center; }

  .services__grid   { grid-template-columns: 1fr; }

  .gallery__grid    { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gitem--tall,
  .gitem--wide      { grid-row: span 1; grid-column: span 1; }
  .gitem img        { min-height: 220px !important; }

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

/* ═══════════════════════════════════════════════
   ACCESSIBILITÉ
═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .card { opacity: 1; transform: none; }
}