@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;
}

/* ── Tokens ── */
: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(4rem, 8vw, 8rem);
  /* 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;
}

/* ── Icons ── */
.service-icon i,
.feature-icon i {
  font-size: 1.45rem;
  color: var(--gold);
  transition: color 0.4s var(--ease);
  line-height: 1;
}
.service-card:hover .service-icon i,
.feature-card:hover .feature-icon i { color: var(--white); }
.info-icon i { font-size: 1.1rem; color: var(--gold); }
.social-links a i { font-size: 0.92rem; }
.btn-primary i,
.btn-secondary i,
.service-link i { font-size: 0.85rem; transition: transform 0.3s var(--ease); }
.btn-primary:hover i,
.service-link:hover i { transform: translateX(5px); }

/* ── 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), background 0.4s var(--ease);
}
header.scrolled {
  padding: 0.7rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
  background: rgba(20,17,13,0.82);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

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;
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  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%);
}


/* Aurore dorée — halos qui dérivent (couche profonde) */
.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;
}

/* Aurore dorée — halos plus vifs, dérive et respiration (couche avant) */
.hero > .hero-glow {
  position: absolute;
  z-index: 1;
  inset: -25%;
  pointer-events: none;
  background:
    radial-gradient(36% 34% at 76% 26%, rgba(201,169,98,0.28), transparent 60%),
    radial-gradient(30% 28% at 18% 82%, rgba(201,169,98,0.15), transparent 64%);
  animation: heroAuroraB 13s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

@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); }
}
@keyframes heroAuroraB {
  0%   { transform: translate3d(9%, -5%, 0) scale(1);    opacity: 0.78; }
  50%  { transform: translate3d(-11%, 7%, 0) scale(1.16); opacity: 1; }
  100% { transform: translate3d(7%, -9%, 0) scale(1.06); opacity: 0.9; }
}

/* Grain léger pour éviter les bandes de dégradé et donner de la matière */
.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");
}

.hero-content {
  width: 100%;
  max-width: min(900px, var(--container));
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 7rem) var(--gutter) clamp(3.5rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: fadeSlideUp 1s var(--ease-out) forwards;
  opacity: 0;
}


@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.68rem, 0.9vw, 0.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  animation: fadeSlideUp 1s var(--ease-out) 0.15s forwards;
  opacity: 0;
}
.hero-eyebrow::before {
  content: "";
  width: clamp(2rem, 5vw, 3.5rem);
  height: 2px;
  background: var(--gold);
  flex: none;
}

.hero h1 {
  font-size: clamp(2.4rem, 7.6vw, 6.25rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
  animation: fadeSlideUp 1s var(--ease-out) 0.25s forwards;
  opacity: 0;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.hero-description {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 560px;
  line-height: 1.85;
  animation: fadeSlideUp 1s var(--ease-out) 0.35s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 1s var(--ease-out) 0.45s forwards;
  opacity: 0;
}

/* ── Buttons ── */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  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);
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal-dark);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,169,98,0.45);
}
.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,98,0.1);
}

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: 0 var(--gutter);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-tag::before,
.section-tag::after {
  content: '';
  width: clamp(18px, 3vw, 36px);
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: var(--charcoal-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ── Services ── */
.services {
  padding: var(--section-y) 0;
  max-width: var(--container);
  margin: 0 auto;
}

/* ── Services — accordéon horizontal ── */
.services-accordion {
  display: flex;
  gap: 1.5px;
  margin: 0 var(--gutter);
  background: var(--border);
  border: 1px solid var(--border);
  height: clamp(380px, 52vh, 480px);
  overflow: hidden;
}
.acc-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  text-decoration: none;
  color: var(--charcoal-dark);
  cursor: pointer;
  transition: flex-grow 0.55s var(--ease), background 0.4s var(--ease);
}
.acc-panel.is-open { flex-grow: 4.2; }

.acc-icon {
  position: absolute;
  top: clamp(1.4rem, 3vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), left 0.55s var(--ease), transform 0.55s var(--ease);
}
.acc-icon i { font-size: 1.3rem; color: var(--gold); transition: color 0.4s var(--ease); }
.acc-panel.is-open .acc-icon {
  left: clamp(1.2rem, 2.4vw, 1.9rem);
  transform: translateX(0);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--gold-glow-sm);
}
.acc-panel.is-open .acc-icon i { color: var(--white); }

.acc-title-v {
  position: absolute;
  left: 50%;
  bottom: clamp(1.5rem, 3vw, 2.25rem);
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: 'Grold Rounded', sans-serif;
  font-weight: 700;
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
  color: var(--charcoal);
  white-space: nowrap;
  transition: opacity 0.3s var(--ease);
}
.acc-panel.is-open .acc-title-v { opacity: 0; }

.acc-content {
  position: absolute;
  left: clamp(1.2rem, 2.4vw, 1.9rem);
  bottom: clamp(1.6rem, 3.2vw, 2.4rem);
  width: min(360px, 70vw);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease) 0.1s, transform 0.4s var(--ease) 0.1s;
  pointer-events: none;
}
.acc-panel.is-open .acc-content { opacity: 1; transform: none; }
.acc-title {
  font-family: 'Grold Rounded', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  color: var(--charcoal-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.acc-desc {
  font-size: clamp(0.9rem, 1.1vw, 0.97rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.acc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
}
.acc-link i { transition: transform 0.3s var(--ease); }
.acc-panel.is-open:hover .acc-link i { transform: translateX(5px); }
.acc-panel::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.acc-panel.is-open::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .services-accordion { flex-direction: column; height: auto; overflow: visible; }
  .acc-panel { flex: none; overflow: visible; padding: clamp(1.75rem,5vw,2.5rem) clamp(1.5rem,4vw,2rem); }
  .acc-icon { position: static; transform: none; left: auto; margin-bottom: 1.25rem; }
  .acc-panel.is-open .acc-icon { transform: none; left: auto; }
  .acc-num { top: clamp(1.25rem,4vw,1.75rem); right: clamp(1.25rem,4vw,1.75rem); }
  .acc-title-v { display: none; }
  .acc-content { position: static; opacity: 1; transform: none; width: auto; pointer-events: auto; }
  .acc-panel::after, .acc-panel.is-open::after { transform: scaleX(0); }
}

/* ── Contact ── */
.contact {
  background: var(--charcoal-dark);
  padding: var(--section-y) var(--gutter);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,169,98,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,169,98,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: goldBreathe 13s var(--ease) infinite;
}

.contact-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  position: relative;
  z-index: 2;
}

.contact-info { color: var(--white); }
.contact-info .section-tag { color: var(--gold-light); }
.contact-info .section-tag::before,
.contact-info .section-tag::after { background: var(--gold); }
.contact-info .section-title { color: var(--white); margin-bottom: 1.5rem; }
.contact-info > p {
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  max-width: 420px;
  line-height: 1.85;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.info-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
a.info-item:hover {
  background: rgba(201,169,98,0.08);
  border-color: rgba(201,169,98,0.4);
  transform: translateX(5px);
}

.info-icon {
  width: 48px; height: 48px;
  background: rgba(201,169,98,0.1);
  border: 1px solid rgba(201,169,98,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.info-item:hover .info-icon {
  background: rgba(201,169,98,0.2);
  border-color: var(--gold);
}
.info-content { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.info-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-light);
}
.info-value {
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  color: rgba(255,255,255,0.82);
  word-wrap: break-word;
  line-height: 1.4;
}
.info-go {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.78rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  flex-shrink: 0;
}
a.info-item:hover .info-go { opacity: 1; transform: translateX(0); }
.info-item--static { cursor: default; }

/* Carte */

/* Formulaire — habillage */
.form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  background: rgba(201,169,98,0.12);
  border: 1px solid rgba(201,169,98,0.25);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.form-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.form-note i { color: var(--gold); font-size: 0.72rem; }

.contact-form {
  background: var(--white);
  padding: clamp(1.75rem, 4vw, 3.5rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin-bottom: 0.5rem;
  color: var(--charcoal-dark);
}
.contact-form > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 16px; /* avoid iOS zoom */
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  color: var(--charcoal);
  transition: all 0.3s var(--ease);
  outline: none;
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,98,0.18), var(--gold-glow-sm);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.submit-btn {
  width: 100%;
  background: var(--charcoal-dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 1.15rem 2rem;
  border: none;
  cursor: pointer;
  transition: color 0.4s var(--ease);
  margin-top: 0.75rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  min-height: 48px;
}
.submit-btn span { position: relative; z-index: 2; }
.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.submit-btn:hover::before { transform: scaleX(1); }
.submit-btn:hover { color: var(--charcoal-dark); }

/* ── 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);
}

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

/* Tablet large: stack contact early, drop to 2 service cols */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info > p { max-width: none; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

/* Tablet: mobile nav kicks in here, not at 768 */
@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; }
  .footer-content { grid-template-columns: 1fr 1fr; text-align: left; }
}

/* Small tablet / large phone */
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 100%; }
  .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;
  }
  .info-item { margin-bottom: 1.25rem; padding-bottom: 1.25rem; }
}

/* Phone */
@media (max-width: 420px) {
  :root { --gutter: 1.1rem; }
  .section-tag::before,
  .section-tag::after { display: none; }
  .hero { min-height: auto; padding-top: 1rem; }
  .logo { letter-spacing: 0.05em; }
}

/* 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-text, .hero-eyebrow, .hero h1, .hero-description, .hero-cta { opacity: 1 !important; }
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1px solid rgba(201,169,98,0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll-line {
  width: 2px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: heroScrollDot 1.8s var(--ease) infinite;
}
@keyframes heroScrollDot {
  0%   { opacity: 0; transform: translateY(-4px); }
  40%  { opacity: 1; }
  80%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; }
}
@media (max-width: 640px) { .hero-scroll { display: none; } }

/* Mot rotatif du hero */
.rotator {
  position: relative;
  display: inline-grid;
  align-items: end;
  vertical-align: bottom;
  overflow: hidden;
  /* content-box : le padding ajoute de l'espace SOUS le mot (sinon border-box
     global le retrancherait), pour ne pas couper les jambages (g, é…). */
  box-sizing: content-box;
  height: 1.05em;
  padding-bottom: 0.3em;
  margin-bottom: -0.3em;
}
.rotator-word {
  grid-area: 1 / 1;
  align-self: end;
  color: var(--gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.05;
  text-shadow: 0 0 30px rgba(201,169,98,0.35);
  opacity: 0;
  transform: translateY(135%);
  transition: transform 0.6s var(--ease-spring), opacity 0.5s var(--ease);
  white-space: nowrap;
}
.rotator-word.is-active { opacity: 1; transform: translateY(0); }
.rotator-word.is-leaving { opacity: 0; transform: translateY(-135%); }

@media (prefers-reduced-motion: reduce) {
  .rotator { height: auto; }
  .rotator-word { position: static; opacity: 0; transform: none; transition: none; }
  .rotator-word.is-active { opacity: 1; }
  .rotator-word:not(.is-active) { display: none; }
}

/* 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; }

/* ── Stats band ── */
.stats-band {
  background: #0e0c09;
  border-top: 1px solid rgba(201,169,98,0.12);
  border-bottom: 1px solid rgba(201,169,98,0.12);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
}
.stats-band-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(201,169,98,0.14);
}
.stats-item:last-child { border-right: none; }
.stats-num {
  font-family: 'Grold Rounded', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-num em {
  font-style: normal;
  font-size: 0.62em;
  opacity: 0.8;
}
.stats-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 640px) {
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-item {
    padding: 1.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(201,169,98,0.12);
  }
  .stats-item:nth-child(odd) { border-right: 1px solid rgba(201,169,98,0.12); }
  .stats-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── Témoignages ── */
.testimonials {
  background: #13110e;
  padding: var(--section-y) var(--gutter);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,169,98,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.testimonials-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.testimonials-header .section-tag { color: var(--gold-light); }
.testimonials-header .section-tag::before,
.testimonials-header .section-tag::after { background: var(--gold); }
.testimonials-header .section-title { color: var(--white); margin-bottom: 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,169,98,0.12);
}
.testimonial-card {
  background: #13110e;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  transition: background 0.3s var(--ease);
}
.testimonial-card:hover { background: rgba(255,255,255,0.02); }
.testimonial-stars { display: flex; gap: 0.3rem; }
.testimonial-stars i { color: var(--gold); font-size: 0.7rem; }
.testimonial-card p {
  font-size: clamp(0.93rem, 1.1vw, 1.03rem);
  color: rgba(255,255,255,0.62);
  line-height: 1.88;
  flex: 1;
  font-style: italic;
}
.testimonial-card p::before { content: '\201C'; }
.testimonial-card p::after  { content: '\201D'; }
.testimonial-footer {
  border-top: 1px solid rgba(201,169,98,0.15);
  padding-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.testimonial-name {
  font-family: 'Grold Rounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(201,169,98,0.55);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { .scroll-top { transition: none; } }

/* ═══════════════ FORMULAIRE : MESSAGES & HONEYPOT ═══════════════ */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-alert {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  animation: formAlertIn 0.3s ease;
}
.form-alert span { opacity: 0.75; }
.form-alert--success {
  background: rgba(201,169,98,0.08);
  color: #E8D5A3;
  border-left: 3px solid #C9A962;
}
.form-alert--success strong { color: #C9A962; }
.form-alert--error {
  background: rgba(180,60,60,0.08);
  color: rgba(255,200,200,0.85);
  border-left: 3px solid rgba(200,80,80,0.7);
}
.form-alert--error strong { color: rgba(255,150,150,0.9); }
@keyframes formAlertIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
