/* ============================================================
   Vélaris Web — feuille de style
   Design premium : or sur noir, sobre et lisible.
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --bg:          #0a0a0b;
  --bg-2:        #0f0e11;
  --surface:     #151419;
  --surface-2:   #1c1b21;

  --gold:        #d8b26a;
  --gold-bright: #f2dca0;
  --gold-deep:   #a87b33;
  --gradient-gold: linear-gradient(135deg, #f4dda2 0%, #d8b26a 48%, #a87b33 100%);

  --text:        #f4f2ec;
  --text-muted:  #a8a59d;
  --text-dim:    #716e67;

  --line:        rgba(216, 178, 106, 0.15);
  --line-soft:   rgba(255, 255, 255, 0.07);

  --radius:      14px;
  --radius-sm:   9px;
  --container:   1200px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);

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

/* ---------- Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Empêche tout défilement horizontal accidentel sur mobile */
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Retire le flash gris/bleu au toucher (le ripple fait le retour visuel) */
  -webkit-tap-highlight-color: rgba(216, 178, 106, 0.18);
}

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

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

h1, h2, h3 {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  line-height: 1.12;
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection {
  background: rgba(216, 178, 106, 0.28);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: #1a1410;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Bandeau d'information « activité en cours de création » */
.launch-banner {
  background: linear-gradient(90deg, rgba(216, 178, 106, 0.16), rgba(216, 178, 106, 0.06));
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-align: center;
  padding: 11px 24px;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.launch-banner strong {
  color: var(--gold);
  font-weight: 600;
}
@media (max-width: 620px) {
  .launch-banner {
    font-size: 0.78rem;
    padding: 9px 14px;
  }
}

/* Barre de progression de lecture (se remplit au défilement) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  background: var(--gradient-gold);
  box-shadow: 0 0 8px rgba(216, 178, 106, 0.55);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* ---------- Mise en page ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 116px 0; }
.section-alt { background: var(--bg-2); }

/* Décale l'ancrage pour ne pas masquer les titres sous l'en-tête fixe */
section[id] { scroll-margin-top: 128px; }

.section-head {
  max-width: 660px;
  margin: 0 auto 64px;
  text-align: center;
}

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing: -0.01em;
}

.section-lead {
  margin-top: 18px;
  font-size: 1.06rem;
  color: var(--text-muted);
}

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: var(--font-display);
}

/* ---------- Boutons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              color 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
.btn-lg { padding: 16px 32px; font-size: 0.98rem; }

.btn-primary {
  background: var(--gradient-gold);
  color: #1c1509;
  box-shadow: 0 10px 30px -12px rgba(216, 178, 106, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -12px rgba(216, 178, 106, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

/* Effet d'ondulation au clic (inspiré du composant pricing) */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  transform: scale(0);
  pointer-events: none;
  animation: btn-ripple 0.6s var(--ease);
}
@keyframes btn-ripple {
  to { transform: scale(1); opacity: 0; }
}

/* ---------- En-tête ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .header-inner { height: 72px; }
.site-header.scrolled .brand-mark { width: 50px; height: 50px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px -10px rgba(216, 178, 106, 0.45);
  transition: width 0.4s var(--ease), height 0.4s var(--ease);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
}
.brand-name-light { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Voile sombre derrière le menu mobile (clic pour fermer) */
.nav-overlay {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(6, 6, 8, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---------- Héro ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 178px 0 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -28%;
  right: -8%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(216, 178, 106, 0.2) 0%, transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(216,178,106,0.05), transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(216,178,106,0.04), transparent 42%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  letter-spacing: -0.015em;
  margin: 8px 0 0;
}
.hero-lead {
  margin-top: 30px;
  max-width: 600px;
  font-size: 1.16rem;
  color: var(--text-muted);
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-trust {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}
.hero-trust li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c1509' stroke-width='3.5'><path d='M5 12l5 5L20 6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 10px no-repeat,
    var(--gradient-gold);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-cue svg { animation: bob 2.2s var(--ease) infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ---------- Tarifs / Offre (cartes verre dépoli) ---------- */
.pricing-stage {
  position: relative;
  margin-top: 4px;
}
.pricing-backdrop {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
}
.pricing-backdrop img {
  width: min(940px, 122%);
  opacity: 0.62;
  transform: translateY(-58px);
  /* On ne garde que le V : le wordmark VÉLARIS est masqué */
  -webkit-mask-image: linear-gradient(to bottom, #000 62%, transparent 70%);
  mask-image: linear-gradient(to bottom, #000 62%, transparent 70%);
}
.pricing-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 178, 106, 0.28), transparent 65%);
  filter: blur(28px);
  animation: pricing-pulse 7s var(--ease) infinite;
}
@keyframes pricing-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%      { transform: scale(1.14); opacity: 1; }
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 30px;
  justify-content: center;
  padding: 36px 0;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 34px;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(12, 11, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 30px 60px -32px rgba(0, 0, 0, 0.85);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}
.price-card-featured {
  border-color: rgba(216, 178, 106, 0.42);
  background:
    linear-gradient(160deg, rgba(216, 178, 106, 0.18), rgba(216, 178, 106, 0.04)),
    rgba(15, 13, 10, 0.48);
  box-shadow: 0 0 0 1px rgba(216, 178, 106, 0.22),
              0 38px 70px -32px rgba(0, 0, 0, 0.9);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: #1c1509;
  box-shadow: 0 8px 20px -8px rgba(216, 178, 106, 0.6);
}
.price-badge-soft {
  background: var(--surface-2);
  color: var(--gold);
  border: 1px solid var(--line);
  box-shadow: none;
}

.price-head { min-height: 134px; }
.price-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}
.price-desc {
  margin-top: 8px;
  font-size: 0.97rem;
  color: var(--text-muted);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 24px 0;
}
.price-value {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-value-quote {
  font-size: 2.1rem;
  font-style: italic;
}
.price-period {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.price-divider {
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, transparent, rgba(216, 178, 106, 0.32) 50%, transparent);
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
}
.price-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.96rem;
  color: var(--text);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8b26a' stroke-width='3'><path d='M5 12l5 5L20 6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 11px no-repeat;
  border: 1px solid var(--line);
}
.price-btn {
  margin-top: auto;
  width: 100%;
}
.pricing-note {
  margin-top: 30px;
  text-align: center;
  font-size: 0.86rem;
  font-style: italic;
  color: var(--text-dim);
}

@media (min-width: 981px) {
  .price-card-featured { transform: scale(1.04); }
  .price-card-featured:hover { transform: scale(1.04) translateY(-6px); }
}

/* ---------- Méthode ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 36px 26px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.step:hover {
  transform: translateY(-5px);
  border-color: var(--line);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 14px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
}

/* ---------- Réalisations ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.work-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 30px 56px -30px rgba(0, 0, 0, 0.85);
}
.work-thumb {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-soft);
}
.work-body { padding: 28px 30px 32px; }
.work-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.work-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 10px;
}
.work-desc { font-size: 0.99rem; }
.work-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Collage d'aperçus (3 captures par projet) — images entières, non rognées */
.work-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--bg);
  transition: transform 0.5s var(--ease);
}
.work-collage img {
  display: block;
  width: 100%;
  aspect-ratio: 985 / 535;
  object-fit: cover;
  object-position: center;
}
.work-collage img:first-child { grid-column: 1 / -1; }
.work-card:hover .work-collage { transform: scale(1.025); }

/* Carte « réalisation à venir » */
.work-card-soon {
  border-style: dashed;
  border-color: var(--line);
}
.work-thumb-soon {
  display: grid;
  place-items: center;
  aspect-ratio: 1.24;
  border-bottom-style: dashed;
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 178, 106, 0.09), transparent 68%),
    var(--bg-2);
}
.work-soon-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px dashed rgba(216, 178, 106, 0.42);
  color: var(--gold);
}
.work-soon-icon svg { width: 24px; height: 24px; }
.work-card-soon .work-tag { color: var(--text-dim); }
.work-card-soon .work-title { color: var(--text-muted); }

/* ---------- Pourquoi ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  padding: 34px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.why-item:hover {
  transform: translateY(-5px);
  border-color: var(--line);
}
.why-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(216, 178, 106, 0.1);
  border: 1px solid var(--line);
  color: var(--gold);
  margin-bottom: 20px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.why-desc { font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: start;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 38px 36px;
}

/* Bloc « formulaire fermé » pendant la phase de pré-lancement */
.contact-notice {
  background:
    linear-gradient(160deg, rgba(216, 178, 106, 0.12), rgba(216, 178, 106, 0.03)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.contact-notice-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px dashed rgba(216, 178, 106, 0.5);
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-notice-icon svg { width: 26px; height: 26px; }
.contact-notice-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  margin: 0;
}
.contact-notice-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin: 0;
}
.contact-notice a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(216, 178, 106, 0.35);
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease);
}
.contact-notice a:hover { color: var(--gold-bright); }
.field { margin-bottom: 20px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 8px;
}
.field-opt { color: var(--text-dim); font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8a59d' stroke-width='2'><path d='M6 9l6 6 6-6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 178, 106, 0.13);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit { width: 100%; margin-top: 4px; }

.form-status {
  margin-top: 16px;
  font-size: 0.93rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { color: var(--gold-bright); }
.form-status.is-error { color: #e8a08f; }

.form-legal {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.contact-aside {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
}
.contact-aside-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.contact-info { margin-bottom: 28px; }
.contact-info li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-info li:first-child { padding-top: 0; }
.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info a {
  font-size: 1.04rem;
  color: var(--text);
  transition: color 0.3s var(--ease);
  word-break: break-word;
}
.contact-info a:hover { color: var(--gold-bright); }

.contact-reassure {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-reassure li {
  position: relative;
  padding-left: 26px;
  font-size: 0.93rem;
  color: var(--text-muted);
}
.contact-reassure li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c1509' stroke-width='3.5'><path d='M5 12l5 5L20 6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 9px no-repeat,
    var(--gradient-gold);
}

/* ---------- Pied de page ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
  padding: 64px 0 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 48px;
}
.footer-brand { max-width: 320px; }
.footer-tagline {
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.16rem;
  color: var(--text-muted);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a,
.footer-contact a {
  font-size: 0.96rem;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--gold); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-legal {
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(168, 165, 157, 0.3);
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease), text-decoration-color 0.3s var(--ease);
}
.footer-legal a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ---------- Page « Mentions légales » ---------- */
.legal-page { padding: 140px 0 96px; }
.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}
.legal-head { margin-bottom: 56px; }
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.01em;
  margin: 14px 0 18px;
}
.legal-lead {
  font-size: 1.04rem;
  color: var(--text-muted);
}
.legal-section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-soft);
}
.legal-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 600;
}
.legal-section h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 10px;
  letter-spacing: 0.01em;
}
.legal-section p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.legal-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-list li {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.legal-list li::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.4em;
}
.legal-section strong { color: var(--text); font-weight: 600; }
.legal-section a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(216, 178, 106, 0.35);
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}
.legal-section a:hover {
  color: var(--gold-bright);
  text-decoration-color: var(--gold);
}
.legal-update {
  margin-top: 36px;
  text-align: center;
  font-size: 0.86rem;
  font-style: italic;
  color: var(--text-dim);
}

@media (max-width: 620px) {
  .legal-page { padding: 110px 0 64px; }
  .legal-container { padding: 0 20px; }
  .legal-section { margin-bottom: 36px; padding-bottom: 36px; }
  .legal-section h2 { font-size: 1.5rem; }
}

/* ---------- Animations au défilement ----------
   Le masquage n'est appliqué que si le JavaScript est actif (classe .js).
   Sans JavaScript, tout le contenu reste visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.js .reveal:nth-child(2) { transition-delay: 0.07s; }
.js .reveal:nth-child(3) { transition-delay: 0.14s; }
.js .reveal:nth-child(4) { transition-delay: 0.21s; }

/* Variante fondu seul (sans déplacement) — pour les éléments dont
   on ne veut pas écraser le transform, comme les cartes de tarifs. */
.js .reveal-fade {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.js .reveal-fade.is-visible { opacity: 1; }
.js .reveal-fade:nth-child(2) { transition-delay: 0.12s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-overlay { display: block; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    padding: 0 30px;
    background: var(--bg-2);
    border-left: 1px solid var(--line-soft);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link {
    font-size: 1.12rem;
    padding: 15px 6px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-link::after { display: none; }
  .nav-cta {
    margin-left: 0;
    margin-top: 18px;
    width: 100%;
  }
  body.nav-open { overflow: hidden; }

  .pricing-grid {
    grid-template-columns: minmax(0, 400px);
    padding: 30px 0;
  }
  .pricing-backdrop img {
    width: min(620px, 100%);
    transform: translateY(-30px);
  }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }

  .hero { padding: 152px 0 56px; }
  .hero-lead { margin-top: 22px; }
  .hero-actions {
    margin-top: 30px;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { width: 100%; }
  .hero-trust { margin-top: 34px; gap: 10px 20px; }
  .hero-glow { width: 460px; height: 460px; }

  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-collage { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .price-card,
  .contact-form,
  .contact-aside { padding: 34px 26px; }
  .pricing-glow { width: 300px; height: 300px; }

  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-legal { flex-direction: column; }
}

/* ---------- Préférence : réduire les animations ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  .js .reveal-fade,
  .js .reveal-fade.is-visible { opacity: 1; transition: none; }
  .scroll-cue svg,
  .pricing-glow { animation: none; }
  .btn-ripple { display: none; }
  * { transition-duration: 0.01ms !important; }
}
