/* ========================================
   LEAWEBDESIGN — STYLE PRINCIPAL
   Design éditorial moderne, doré & sombre
   ======================================== */

:root {
  /* Couleurs */
  --bg: #0e0e0e;
  --bg-soft: #161616;
  --bg-card: #1a1a1a;
  --ink: #f5f1ea;
  --ink-soft: #b8b1a3;
  --ink-mute: #6b6356;
  --gold: #d4af7a;
  --gold-bright: #e8c898;
  --gold-deep: #a8855a;
  --line: rgba(212, 175, 122, 0.18);
  --line-strong: rgba(212, 175, 122, 0.4);

  /* Typo */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espacement */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --section-py: clamp(5rem, 12vw, 9rem);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--gold); color: var(--bg); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ========================================
   LOADER
   ======================================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.loader-l {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: var(--gold);
  font-weight: 300;
  animation: pulse 1.4s var(--ease) infinite;
}
.loader-logo {
  width: auto;
  height: 80px;
  display: block;
  animation: pulse 1.4s var(--ease) infinite;
}
.loader-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  animation: lineGrow 1.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@keyframes lineGrow {
  0%, 100% { transform: scaleX(0.3); opacity: 0.3; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(14, 14, 14, 0);
  backdrop-filter: blur(0);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: auto;
  height: 38px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text { color: var(--ink); }
.logo-text em { font-style: italic; color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--bg) !important;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 175, 122, 0.3);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-soft);
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 1.5rem;
  transition: right 0.4s var(--ease);
  border-left: 1px solid var(--line);
}
.nav-mobile.open { right: 0; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  font-weight: 300;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a.mobile-cta {
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1rem;
  margin-top: 1rem;
  font-weight: 500;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* VIDÉO EN FOND */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s ease-out;
  will-change: opacity;
}
.hero-video.loaded {
  opacity: 0.55;
}

/* OVERLAY SOMBRE pour garder le texte lisible */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(14,14,14,0.35) 0%, rgba(14,14,14,0.75) 70%, rgba(14,14,14,0.95) 100%),
    linear-gradient(180deg, rgba(14,14,14,0.6) 0%, rgba(14,14,14,0.4) 50%, rgba(14,14,14,0.85) 100%);
  pointer-events: none;
}

/* VIGNETTAGE — assombrit les bords pour effet cinématique */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(14,14,14,0.6) 100%);
  pointer-events: none;
}

/* EFFET SHIMMER — reflet doré qui balaye lentement */
.hero-shimmer {
  position: absolute;
  inset: -50%;
  z-index: 3;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(212, 175, 122, 0.08) 48%,
    rgba(232, 200, 152, 0.15) 50%,
    rgba(212, 175, 122, 0.08) 52%,
    transparent 60%,
    transparent 100%
  );
  pointer-events: none;
  animation: shimmer 8s ease-in-out infinite;
  will-change: transform;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-30%) translateY(-30%); }
  50% { transform: translateX(30%) translateY(30%); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  will-change: transform;
  z-index: 4;
  mix-blend-mode: screen;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  animation: float1 20s var(--ease) infinite;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-deep) 0%, transparent 70%);
  bottom: -15%;
  left: -10%;
  animation: float2 25s var(--ease) infinite;
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 30px) scale(1.1); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}
.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  background: rgba(212, 175, 122, 0.04);
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}
.hero-sub strong {
  color: var(--gold);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 1.8rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 122, 0.35);
}
.btn-primary svg { transition: transform 0.4s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 1.05rem 1.8rem;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.4s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 122, 0.05);
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; align-items: center; }
.meta-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
}
.meta-label {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: fadeIn 1s var(--ease) 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 600px) {
  .hero-scroll { display: none; }
  .hero-meta { gap: 1.25rem; }
  .meta-num { font-size: 1.5rem; }
  .meta-divider { height: 28px; }
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 1.5rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--ink-soft);
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ========================================
   SECTIONS GÉNÉRIQUES
   ======================================== */
section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-head {
  margin-bottom: 4.5rem;
  max-width: 760px;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
  max-width: 540px;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* === VIDÉO EN FOND === */
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.services-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s ease-out;
  will-change: opacity;
}
.services-video.loaded {
  opacity: 0.7;
}
.services-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,14,14,0.7) 0%, rgba(14,14,14,0.3) 30%, rgba(14,14,14,0.3) 70%, rgba(14,14,14,0.8) 100%);
}

/* Container du dessus */
.services > .container {
  position: relative;
  z-index: 5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  position: relative;
  z-index: 5;
}
.service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(14, 14, 14, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.service-card:hover { background: rgba(22, 22, 22, 0.85); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-card ul li {
  font-size: 0.85rem;
  color: var(--ink-mute);
  padding-left: 1.2rem;
  position: relative;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ========================================
   OFFRES / PRICING
   ======================================== */
.offres {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.pricing-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.pricing-featured {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(212, 175, 122, 0.06) 100%);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(212, 175, 122, 0.1);
}
.pricing-featured:hover {
  box-shadow: 0 32px 80px rgba(212, 175, 122, 0.18);
}

.pricing-tag-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-cur {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
}
.pricing-tag {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink);
}
.pricing-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: inherit;
}
.pricing-btn:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.pricing-btn-featured {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.pricing-btn-featured:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--bg);
}

/* MAINTENANCE */
.maintenance-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transition: all 0.4s var(--ease);
}
.maintenance-card:hover {
  border-color: var(--line-strong);
}
.maintenance-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 280px;
}
.maintenance-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}
.maintenance-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.maintenance-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.maintenance-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.maintenance-price { display: flex; align-items: baseline; gap: 0.2rem; }
.m-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
}
.m-period { color: var(--ink-mute); font-size: 0.95rem; }
.maintenance-right .pricing-btn { width: auto; padding: 0.85rem 1.6rem; }

@media (max-width: 700px) {
  .maintenance-card { padding: 1.75rem; }
  .maintenance-right { width: 100%; justify-content: space-between; }
}

/* ========================================
   PROCESS
   ======================================== */
.process { background: var(--bg); }
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.4s var(--ease);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step:hover { padding-left: 1rem; }

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  min-width: 60px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.step-content p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 560px;
}
.step-deco {
  width: 60px;
  height: 1px;
  background: var(--line-strong);
  transition: width 0.4s var(--ease);
}
.process-step:hover .step-deco { width: 100px; background: var(--gold); }

@media (max-width: 700px) {
  .process-step { grid-template-columns: auto 1fr; gap: 1.25rem; padding: 2rem 0; }
  .step-deco { display: none; }
  .process-step:hover { padding-left: 0; }
}

/* ========================================
   ZONE GÉOGRAPHIQUE
   ======================================== */
.zone {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.zone-content { max-width: 900px; }
.zone-text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 1.5rem 0 2.5rem;
}
.zone-text strong { color: var(--gold); font-weight: 500; }
.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.zone-tags span {
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.zone-tags span:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 122, 0.05);
}

/* ========================================
   FAQ
   ======================================== */
.faq { background: var(--bg); }
.faq-container { max-width: 900px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--ink);
  padding: 0.5rem 0;
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover summary { color: var(--gold); }
.faq-content {
  padding: 1rem 0 0.5rem;
  max-width: 720px;
}
.faq-content p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-content strong { color: var(--gold); font-weight: 500; }

/* ========================================
   CONTACT
   ======================================== */
.contact {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-text {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 1.5rem 0 2rem;
  line-height: 1.7;
}
.contact-direct {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.5rem;
  transition: all 0.3s var(--ease);
}
.contact-mail:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form label span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select { cursor: pointer; }

.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}
.contact-form .checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); }
.contact-form .checkbox span {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
  font-weight: 400;
}
.form-submit { margin-top: 0.5rem; width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand { max-width: 320px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.footer-brand p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.7; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.footer-col a, .footer-col span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-siret {
  margin-top: 0.4rem;
  font-size: 0.8rem !important;
  color: var(--ink-mute) !important;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ink-mute);
}
.footer-legal { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.footer-legal a { color: var(--ink-soft); transition: color 0.3s var(--ease); }
.footer-legal a:hover { color: var(--gold); }
.footer-legal .dot { color: var(--gold); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ========================================
   ANIMATIONS REVEAL
   ======================================== */
.reveal, .reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in, .reveal-up.in {
  opacity: 1;
  transform: translateY(0);
}

.hero-content > .reveal:nth-child(1) { transition-delay: 0.2s; }
.hero-content > .reveal:nth-child(2) { transition-delay: 0.35s; }
.hero-content > .reveal:nth-child(3) { transition-delay: 0.55s; }
.hero-content > .reveal:nth-child(4) { transition-delay: 0.7s; }
.hero-content > .reveal:nth-child(5) { transition-delay: 0.85s; }

/* ========================================
   ACCESSIBILITÉ — REDUCED MOTION
   ======================================== */
@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;
  }
  .hero-orb { animation: none; }
  .marquee-track { animation: none; }
}

/* ========================================
   MOBILE — OPTIMISATIONS PERFORMANCES
   ======================================== */
@media (max-width: 768px) {
  /* Réduction des effets lourds sur mobile */
  .hero-orb { filter: blur(80px); opacity: 0.25; }
  .orb-1 { width: 350px; height: 350px; }
  .orb-2 { width: 300px; height: 300px; }
  .grain { opacity: 0.05; }
  .nav.scrolled { backdrop-filter: blur(10px); }
  /* Vidéo plus discrète sur mobile */
  .hero-video.loaded { opacity: 0.45; }
  .hero-shimmer { animation-duration: 12s; }
  /* Section services - vidéo bien visible aussi sur mobile */
  .services-video.loaded { opacity: 0.6; }
  .service-card { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
}

@media (max-width: 480px) {
  /* Pas d'orbes animées sur très petits écrans pour économiser la batterie */
  .hero-orb { animation: none; }
  .pricing-card { padding: 2rem 1.5rem; }
  .price-amount { font-size: 3.2rem; }
  .price-cur { font-size: 1.6rem; }
}

/* Désactiver la vidéo si l'utilisateur préfère réduire les animations */
@media (prefers-reduced-motion: reduce) {
  .hero-video, .services-video { display: none; }
  .hero-shimmer { animation: none; opacity: 0; }
}

/* Économie de données : ne pas charger la vidéo si l'utilisateur est en mode économie */
@media (prefers-reduced-data: reduce) {
  .hero-video, .services-video { display: none; }
}

/* Empêcher le scroll horizontal sur tous les appareils */
html, body { max-width: 100vw; }

/* ====================================================
   MODAL DE QUALIFICATION / DEVIS
   ==================================================== */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.quote-modal.open {
  opacity: 1;
  visibility: visible;
}
.quote-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.quote-modal-content {
  position: relative;
  width: 100%;
  max-width: 700px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s var(--ease);
}
.quote-modal.open .quote-modal-content {
  transform: translateY(0) scale(1);
}
.quote-modal-content::-webkit-scrollbar { width: 8px; }
.quote-modal-content::-webkit-scrollbar-track { background: transparent; }
.quote-modal-content::-webkit-scrollbar-thumb { background: rgba(212, 175, 122, 0.2); border-radius: 999px; }

.quote-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}
.quote-modal-close:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.quote-step {
  display: none;
}
.quote-step-active {
  display: block;
  animation: quoteFadeIn 0.4s var(--ease);
}
@keyframes quoteFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 122, 0.12);
  border: 1px solid rgba(212, 175, 122, 0.3);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.quote-step h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.quote-subtitle {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.quote-subtitle strong { color: var(--gold); }

.quote-form { display: flex; flex-direction: column; gap: 1.1rem; }
.quote-field { display: flex; flex-direction: column; gap: 0.4rem; }
.quote-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.quote-field label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.2);
}
.quote-field textarea { resize: vertical; min-height: 80px; }

.quote-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.3rem;
}
.quote-radio {
  position: relative;
  cursor: pointer;
}
.quote-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.quote-radio span {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: all 0.3s;
}
.quote-radio:hover span { border-color: var(--gold); color: var(--ink); }
.quote-radio input:checked + span {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  font-weight: 500;
}

.quote-actions {
  margin-top: 1rem;
  text-align: center;
}
.quote-actions-note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--ink-mute);
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.quote-btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.quote-btn-primary:hover {
  background: var(--gold-bright, #e8c898);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 122, 0.4);
}
.quote-btn-primary svg { transition: transform 0.3s; }
.quote-btn-primary:hover svg { transform: translateX(4px); }
.quote-btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.quote-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ÉTAPE 2 — Merci & options */
.quote-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  display: grid; place-items: center;
  background: rgba(212, 175, 122, 0.12);
  color: var(--gold);
  border-radius: 50%;
  animation: successPop 0.5s var(--ease);
}
@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
#quoteStep2 { text-align: center; }
#quoteStep2 .quote-subtitle { max-width: 480px; margin-left: auto; margin-right: auto; margin-bottom: 2.5rem; }

.quote-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  text-align: left;
}
.quote-option {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.quote-option:hover { transform: translateY(-3px); border-color: rgba(212, 175, 122, 0.3); }
.quote-option-featured {
  border: 1px solid rgba(212, 175, 122, 0.4);
  background: linear-gradient(135deg, rgba(212, 175, 122, 0.06) 0%, var(--bg) 100%);
}
.quote-option-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(212, 175, 122, 0.2);
}
.quote-option-badge {
  position: absolute;
  top: -10px; right: 1.25rem;
  padding: 0.3rem 0.75rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 999px;
}
.quote-option-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.quote-option h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.quote-option p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}
.quote-option .quote-btn { width: 100%; padding: 0.85rem 1.25rem; font-size: 0.85rem; }

@media (max-width: 700px) {
  .quote-modal-content { padding: 2rem 1.5rem; }
  .quote-field-row { grid-template-columns: 1fr; }
  .quote-options { grid-template-columns: 1fr; }
  .quote-step h2 { font-size: 1.4rem; }
}

/* ====================================================
   SECTION TÉMOIGNAGES
   ==================================================== */
.testimonials {
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212, 175, 122, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials .section-head {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials .section-sub {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  position: relative;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 122, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 122, 0.25);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Variante "vide" — placeholders en attente */
.testimonial-card.empty {
  background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(20, 20, 20, 0.5) 100%);
  border: 1px dashed rgba(212, 175, 122, 0.2);
}

.testimonial-card.empty .testimonial-text {
  color: var(--ink-mute);
  font-style: italic;
}

.testimonial-card.empty .testimonial-name {
  color: var(--gold);
  opacity: 0.7;
}

/* Icône de citation */
.testimonial-quote {
  width: 38px;
  height: 38px;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-quote svg {
  width: 100%;
  height: 100%;
}

/* Texte du témoignage */
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
  margin: 0;
}

/* Auteur — pied de carte */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm, #b88c5a) 100%);
  flex-shrink: 0;
  opacity: 0.4;
  position: relative;
}

.testimonial-avatar::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--bg-soft);
  border-radius: 50%;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* Note finale incitative */
.testimonials-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.5rem 2rem;
  margin: 0 auto;
  max-width: 640px;
  background: rgba(212, 175, 122, 0.06);
  border: 1px solid rgba(212, 175, 122, 0.18);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-align: center;
}

.testimonials-note svg {
  color: var(--gold);
  flex-shrink: 0;
}

.testimonials-note p {
  margin: 0;
  line-height: 1.5;
}

.testimonials-note a {
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid rgba(212, 175, 122, 0.4);
  transition: border-color 0.3s;
}

.testimonials-note a:hover {
  border-bottom-color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .testimonial-card {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .testimonials-note {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    flex-direction: column;
    gap: 0.6rem;
  }
}
