@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@1,400;1,500&display=swap');

@font-face {
  font-family: 'Grold Rounded';
  src: url('GroldRoundedSlim-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Grold Rounded';
  src: url('GroldRoundedSlim-ExtraBlack.ttf') format('truetype');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold:           #C9A962;
  --gold-light:     #E8D5A3;
  --gold-dark:      #A8893E;
  --charcoal:       #5E5B53;
  --charcoal-dark:  #1A1A1A;
  --charcoal-light: #575757;
  --cream:          #F7F5F0;
  --cream-dark:     #EDE9E0;
  --white:          #FFFFFF;
  --text-muted:     #6B6B6B;
  --border:         #E0DBD2;
  --container:      1300px;
  --shadow-sm:      0 2px 16px rgba(0,0,0,0.06);
  --shadow-md:      0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.18);
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:       cubic-bezier(0, 0, 0.2, 1);
  --radius:         2px;
  --gutter:         clamp(1.25rem, 4vw, 3rem);
  --section-y:      clamp(3.5rem, 7vw, 7rem);
  /* premium */
  --gold-grad:      linear-gradient(135deg, var(--gold), var(--gold-light));
  --gold-glow-sm:   0 0 14px rgba(201,169,98,0.35);
  --gold-glow-md:   0 8px 30px rgba(201,169,98,0.30);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: 'Grold Rounded', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.logo {
  font-family: 'Grold Rounded', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* ── Icons ── */
.feature-icon i { font-size: 1.4rem; color: var(--gold); transition: color 0.4s var(--ease); }
.feature-card:hover .feature-icon i { color: var(--white); }
.social-links a i { font-size: 0.9rem; }
.btn-primary i { font-size: 0.85rem; transition: transform 0.3s var(--ease); }
.btn-primary:hover i { transform: translateX(4px); }

/* ── Header ── */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--charcoal-dark);
  padding: 1rem 0;
  transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
header.scrolled {
  padding: 0.7rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-family: 'Grold Rounded', sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 4.2vw, 3rem);
  color: var(--border);
  text-decoration: none;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}
.logo span { color: var(--gold); }

.brand {
  font-family: 'Grold Rounded', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.5rem;
}
.nav-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 0.85rem;
  text-decoration: none;
}
.nav-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,98,0.1);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.mobile-toggle span {
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  display: block;
}

/* ── Page hero ── */
.page-hero {
  min-height: clamp(380px, 55vh, 520px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-top: clamp(80px, 12vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 78% 16%, rgba(201,169,98,0.18), transparent 60%),
    radial-gradient(ellipse 70% 55% at 10% 98%, rgba(201,169,98,0.07), transparent 58%),
    linear-gradient(152deg, #211d17 0%, #17140f 55%, #100e0b 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: -35%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(34% 30% at 28% 30%, rgba(201,169,98,0.20), transparent 62%),
    radial-gradient(28% 26% at 74% 72%, rgba(232,213,163,0.13), transparent 64%);
  animation: heroAuroraA 16s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroAuroraA {
  0%   { transform: translate3d(-12%, -7%, 0) scale(1); }
  50%  { transform: translate3d(9%, 9%, 0) scale(1.18); }
  100% { transform: translate3d(-7%, 11%, 0) scale(1.08); }
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 var(--gutter) clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  animation: fadeSlideUp 1s var(--ease-out) forwards;
  opacity: 0;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.page-tag::before,
.page-tag::after {
  content: '';
  width: clamp(16px, 3vw, 30px);
  height: 1px;
  background: rgba(201,169,98,0.5);
  display: inline-block;
}

.page-hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.page-hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  text-shadow: 0 0 30px rgba(201,169,98,0.35);
}
.page-hero p {
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ── Service detail ── */
.service-detail {
  padding: var(--section-y) var(--gutter);
  background: var(--cream);
}
.service-detail-container {
  max-width: var(--container);
  margin: 0 auto;
}
.service-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.25rem, 5vw, 4rem);
  align-items: end;
  text-align: left;
  max-width: var(--container);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}
.service-intro h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--charcoal-dark);
  margin-bottom: 0;
  line-height: 1.12;
  position: relative;
  padding-left: clamp(1rem, 2vw, 1.5rem);
}
.service-intro h2::before {
  content: '';
  position: absolute;
  left: 0; top: 0.1em; bottom: 0.1em;
  width: 3px;
  background: linear-gradient(var(--gold), var(--gold-light));
}
.service-intro p {
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.95;
}

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.feature-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2rem);
  text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201,169,98,0.22), var(--gold-glow-md);
  z-index: 2;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--gold-glow-sm);
}
.feature-card h3 {
  font-size: clamp(1rem, 1.3vw, 1.05rem);
  color: var(--charcoal-dark);
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: clamp(0.88rem, 1.1vw, 0.92rem);
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Service content (2 cols) ── */
.service-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.content-block h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold-dark);
  margin-bottom: 1.75rem;
  padding-bottom: 0;
  border-bottom: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.content-block h3::before {
  content: '';
  width: clamp(20px, 3vw, 32px);
  height: 1px;
  background: var(--gold);
}

/* Prestations — checklist dorée */
.service-list { list-style: none; }
.service-list li {
  padding: 0.9rem 0 0.9rem 2.4rem;
  position: relative;
  font-size: clamp(0.95rem, 1.15vw, 1rem);
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s var(--ease);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.6rem;
  position: absolute;
  left: 0; top: 0.85rem;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  background: rgba(201,169,98,0.12);
  border: 1px solid rgba(201,169,98,0.3);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}
.service-list li:hover::before {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--gold-glow-sm);
}

/* Méthode — timeline verticale */
.process-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 26px; top: 14px; bottom: 14px;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(201,169,98,0.15));
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  background: transparent;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step-number {
  position: relative;
  z-index: 1;
  width: 54px; height: 54px;
  min-width: 54px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Grold Rounded', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 50%;
  line-height: 1;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.step:hover .step-number {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--gold-glow-sm);
  transform: scale(1.05);
}
.step-content { padding-top: 0.5rem; }
.step-content h4 {
  font-family: 'Grold Rounded', sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: var(--charcoal-dark);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: clamp(0.9rem, 1.1vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  background: var(--charcoal-dark);
  padding: var(--section-y) var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,169,98,0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: goldBreathe 12s var(--ease) infinite;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.cta-section p {
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,0.6);
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
  max-width: 500px;
  line-height: 1.8;
}
.cta-section .btn-primary { position: relative; z-index: 2; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--charcoal-dark);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.76rem, 1vw, 0.82rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: clamp(0.9rem, 1.5vw, 1.15rem) clamp(1.5rem, 3vw, 2.5rem);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,169,98,0.45);
}

/* ── Footer ── */
footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: clamp(3rem, 7vw, 5rem) var(--gutter) 2.5rem;
}
.footer-content {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand .logo {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  display: block;
}
.footer-brand p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
  line-height: 1.9;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.93rem;
  margin-bottom: 0.7rem;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-col p {
  color: rgba(255,255,255,0.45);
  font-size: 0.93rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
  word-wrap: break-word;
}
.footer-bottom {
  max-width: var(--container);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.25); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  transition: all 0.3s var(--ease);
  border-radius: var(--radius);
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,98,0.08);
}

/* ── Showcase + galerie (pages service) ── */
.service-showcase {
  background: var(--white);
  padding: var(--section-y) var(--gutter);
  border-top: 1px solid var(--border);
}
.showcase-band {
  max-width: var(--container);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.showcase-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.showcase-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.showcase-media:hover img { transform: scale(1.05); }
.showcase-eyebrow,
.gallery-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}
.showcase-eyebrow::before,
.gallery-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.showcase-text h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--charcoal-dark);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.showcase-text p {
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.75rem;
}
.gallery { max-width: var(--container); margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(0.15);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.gallery-grid img:hover {
  transform: translateY(-5px);
  filter: grayscale(0);
  box-shadow: var(--shadow-md);
}
.gallery-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .showcase-band { grid-template-columns: 1fr; gap: 1.75rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ══════════ RESPONSIVE ══════════ */

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .service-content { grid-template-columns: 1fr; }
  .service-intro { grid-template-columns: 1fr; align-items: start; gap: 1.25rem; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .mobile-toggle { display: flex; }
  .nav-social { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(82%, 340px);
    height: 100dvh;
    background: var(--charcoal-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.45s var(--ease);
    box-shadow: -12px 0 40px rgba(0,0,0,0.4);
    margin-left: 0;
    padding: 2rem;
  }
  .nav-links.active { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-brand p { margin: 0 auto; }
  .footer-col a:hover { padding-left: 0; }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
  }
  .step { padding: 1.25rem 1rem; gap: 1rem; }
  .step-number { min-width: 40px; }
}

@media (max-width: 420px) {
  :root { --gutter: 1.1rem; }
  .page-tag::before,
  .page-tag::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .page-hero-content { opacity: 1 !important; }
}

/* Halo doré qui respire */
@keyframes goldBreathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.08); }
}

/* Focus clavier visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* Fondu d'arrivée (désactivé en reduced-motion via la règle globale) */
body { animation: pageFade 0.6s var(--ease) both; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* Bouton remonter en haut */
.scroll-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: 46px; height: 46px;
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-grad, var(--gold));
  color: var(--charcoal-dark);
  border: none; cursor: pointer;
  border-radius: 50%;
  box-shadow: var(--gold-glow-md, 0 8px 30px rgba(201,169,98,0.3));
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top i { font-size: 1rem; }
@media (prefers-reduced-motion: reduce) { .scroll-top { transition: none; } }
