/* =========================================================
   La Ronde des Robes — Direction Artistique Haute Couture
   ========================================================= */

/* ---------- 1. Variables ---------- */
:root {
  --rose-framboise: #C73E6E;
  --rose-poudre:    #ECC8D0;      /* rose pastel principal — fonds sections */
  --rose-blush:     #F5E0E5;      /* rose très doux — hero, contact */
  --rose-pale:      #FDF0F2;      /* quasi-blanc rosé — fond body */
  --bordeaux:       #5C1F2E;
  --creme:          #FDF6F7;      /* crème teinté rose */
  --ivoire:         #F9EFF1;      /* ivoire rosé */
  --noir-doux:      #2A1F23;
  --gris-perle:     #8A7B7E;
  --or-rose:        #C9A57C;

  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-script:  'Pinyon Script', 'Dancing Script', cursive;
  --font-body:    'Inter', 'Work Sans', sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;

  --max-width: 1320px;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--noir-doux);
  background: var(--rose-pale);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
p { margin: 0 0 1.2rem; }
h1, h2, h3, h4 { margin: 0; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bordeaux);
  color: var(--creme);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--rose-framboise);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- 3. Typographie ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-framboise);
  margin: 0 0 1rem;
  display: block;
}

.eyebrow--center { text-align: center; }
.eyebrow--blush  { color: var(--rose-poudre); }

.link-underline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--noir-doux);
  border-bottom: 1px solid var(--or-rose);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.link-underline:hover {
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}

/* ---------- 4. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem;
}

.section {
  padding: 120px 0;
}

/* ---------- 5. Curseur custom ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 7px; height: 7px;
  background: var(--bordeaux);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0.55;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
              background 0.35s ease, opacity 0.35s ease, border 0.35s ease;
}
.cursor.is-hovered {
  width: 34px; height: 34px;
  background: transparent;
  border: 1px solid var(--bordeaux);
  opacity: 0.35;
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

.site-header.scrolled {
  background: rgba(253, 240, 242, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(236, 200, 208, 0.5);
}

/* Navbar blanche au-dessus du hero plein écran */
.site-header:not(.scrolled) .logo-wordmark          { color: rgba(255,255,255,0.92); }
.site-header:not(.scrolled) .logo:hover .logo-wordmark { color: #fff; }
.site-header:not(.scrolled) .nav-list a             { color: rgba(255,255,255,0.78); }
.site-header:not(.scrolled) .nav-list a::after      { background: rgba(255,255,255,0.55); }
.site-header:not(.scrolled) .nav-cta                { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.45); }
.site-header:not(.scrolled) .nav-cta:hover          { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.7); }
.site-header:not(.scrolled) .toggle-bar             { background: #fff; }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo { display: flex; align-items: center; }
.logo-wordmark {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--bordeaux);
  transition: color 0.3s ease;
  line-height: 1;
}
.logo:hover .logo-wordmark { color: var(--rose-framboise); }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-list a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--noir-doux);
  position: relative;
  padding-bottom: 3px;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--or-rose);
  transition: width 0.4s ease-out;
}
.nav-list a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
  padding: 0.65rem 1.4rem;
  transition: background 0.4s ease, color 0.4s ease;
}
.nav-cta:hover {
  background: var(--bordeaux);
  color: var(--creme);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  justify-content: center;
  align-items: flex-end;
}
.toggle-bar {
  display: block;
  height: 1.5px;
  background: var(--noir-doux);
  transition: width 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.toggle-bar:nth-child(1) { width: 24px; }
.toggle-bar:nth-child(2) { width: 16px; }
.toggle-bar:nth-child(3) { width: 20px; }
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
  width: 24px;
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
  width: 24px;
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- 7. Mobile overlay ---------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--rose-blush), var(--rose-pale));
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 300;
  color: var(--bordeaux);
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.mobile-nav-list a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 400;
  color: var(--noir-doux);
  transition: color 0.3s ease;
}
.mobile-nav-list a:hover { color: var(--rose-framboise); }
.mobile-cta-item { margin-top: 1rem; }
.mobile-cta {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-style: normal !important;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--bordeaux);
  padding: 0.75rem 2rem !important;
  color: var(--bordeaux) !important;
}

/* ---------- 8. HERO ---------- */
/* ---------- 8. Hero éditorial plein écran ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fond vidéo / photo */
.hero-img-wrap {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-photo {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}

/* Overlay en dégradé sombre */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(20, 8, 14, 0.25) 0%,
      rgba(20, 8, 14, 0.55) 55%,
      rgba(20, 8, 14, 0.80) 100%);
  z-index: 1;
}

/* Contenu centré */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: translateY(16px);
}

.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(4.5rem, 9vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #FAF5F0;
  margin: 1.5rem 0 0;
}

.hero-line { display: block; opacity: 0; }

.gold-bar {
  height: 1px;
  background: var(--or-rose);
  width: 0;
  margin: 2.5rem auto;
}

.hero-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 40ch;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-rdv-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-discover {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease;
  animation: bounce-arrow 2.5s ease-in-out infinite;
  animation-play-state: paused;
}

.hero-discover.anim-ready { animation-play-state: running; }

.hero-discover svg { opacity: 0.6; }

.hero-discover:hover { color: rgba(255,255,255,0.85); }

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ---------- 9. Histoire ---------- */
.section-histoire {
  background: linear-gradient(180deg, var(--rose-pale) 0%, var(--rose-blush) 50%, var(--rose-pale) 100%);
  padding: clamp(4rem, 6vw, 7rem) 0 clamp(2.5rem, 4vw, 4rem);
  overflow: hidden;
}

.histoire-inner {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: center;
}

/* Photo avec fond décalé */
.histoire-photo-col {
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  padding: 0 14px 14px 0;
}

.histoire-photo-col::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px;
  right: 0; bottom: 0;
  background: var(--rose-poudre);
  z-index: 0;
}

.histoire-jenna-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  box-shadow: 0 8px 32px rgba(92, 31, 46, 0.13);
}

/* Colonne texte */
.histoire-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.histoire-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or-rose);
  margin: 0 0 0.7rem;
  opacity: 0;
  transform: translateY(14px);
}

.histoire-ornement {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--or-rose), transparent);
  margin: 0 0 1.2rem;
  opacity: 0;
  transform: translateY(14px);
}

.histoire-grand-titre {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--bordeaux);
  margin: 0 0 1.3rem;
  opacity: 0;
  transform: translateY(20px);
}

.histoire-textes {
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(16px);
}

.histoire-textes p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--noir-doux);
  margin-bottom: 0.8rem;
}

.histoire-p--lead {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.18rem) !important;
  color: var(--bordeaux) !important;
  line-height: 1.7 !important;
  margin-bottom: 1rem !important;
}

/* Citation */
.histoire-quote {
  border: none;
  margin: 0 0 1.4rem;
  padding: 0;
  opacity: 0;
  transform: translateY(14px);
}

.histoire-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: var(--bordeaux);
  margin: 0;
}

.signature-manuscript {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  color: var(--bordeaux);
  text-align: left;
  margin: 0;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  display: block;
}

.signature-underline {
  display: block;
  height: 1px;
  width: 0;
  background: linear-gradient(to right, var(--or-rose) 60%, transparent);
  margin-top: 0.4rem;
  will-change: width;
}

/* ---------- Histoire old gold-sep (kept for JS compat) ---------- */
.histoire-gold-sep { display: none; }

/* ---------- Histoire — responsive ---------- */
@media (max-width: 860px) {
  .histoire-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .histoire-photo-col {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  .histoire-photo-col {
    max-width: 260px;
  }
}

/* ---------- 10. Services ---------- */
.section-services {
  background: var(--bordeaux);
  padding: 60px 0 80px;
}

/* En-tête centré */
.services-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.services-header .eyebrow {
  color: var(--or-rose);
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.services-h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: #FAF5EE;
  margin-top: 0.6rem;
  text-align: center;
  padding-right: 0;
}

/* Grille 3 cartes */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: end;
}

/* Carte photo pleine + texte en overlay */
.service-card {
  position: relative;
  overflow: hidden;
  background: none;
  border: none;
  cursor: pointer;
}

.service-card--1 { margin-top: 0; }
.service-card--2 { margin-top: 4rem; }
.service-card--3 { margin-top: 0; }

/* Overlay gradient du bas */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 12, 22, 0.82) 0%,
    rgba(42, 12, 22, 0.25) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.service-card:hover::after {
  opacity: 0.85;
}

/* Zone image */
.service-card-image {
  height: auto;
  overflow: hidden;
}

.service-photo {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-out);
}

.service-card:hover .service-photo {
  transform: scale(1.06);
}

/* Numéro romain en haut */
.service-num {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.65);
  z-index: 2;
  font-style: normal;
}

/* Corps du texte en bas sur la photo */
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1.6rem 1.8rem;
  z-index: 2;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 300;
  color: #FAF5EE;
  margin-bottom: 0.3rem;
}

.service-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.service-link {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or-rose);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.service-link:hover { gap: 0.8rem; opacity: 0.85; }
.service-link span { transition: transform 0.3s ease; }
.service-link:hover span { transform: translateX(4px); }

/* ---------- 11. Témoignages ---------- */
.section-temoignages {
  position: relative;
  padding: 120px 0;
  background-image: url('../images/photos-boutique/hero-boutique.png');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  isolation: isolate;
}

.section-temoignages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 6, 12, 0.78);
  z-index: -1;
}

.temoignages-header {
  margin-bottom: 80px;
  text-align: center;
}
.temoignages-h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--creme);
  margin-top: 0.75rem;
}

.temoignages-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 3rem;
  align-items: start;
}

.temoignage {
  padding: 1rem 0;
}
.temoignage blockquote {
  margin: 0 0 1.5rem;
}
.temoignage blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--creme);
  margin: 0;
}
.temoignage-sep {
  width: 30px;
  height: 1px;
  background: var(--or-rose);
  margin-bottom: 1.25rem;
}
.temoignage-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--creme);
  margin: 0 0 0.25rem;
}
.temoignage-meta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-poudre);
  margin: 0;
}

.temoignage-divider {
  width: 1px;
  background: rgba(201, 165, 124, 0.3);
  align-self: stretch;
  min-height: 180px;
}

/* ---------- 12. Infos ---------- */
.section-infos {
  background: linear-gradient(135deg, var(--rose-blush) 0%, var(--rose-pale) 100%);
}

.infos-layout {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 0 6rem;
  align-items: start;
}

.infos-h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--bordeaux);
  margin: 0.75rem 0 2.5rem;
  line-height: 1;
}

.infos-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.infos-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.infos-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-framboise);
}
.infos-value {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--noir-doux);
}
.infos-link {
  transition: color 0.3s ease;
  display: inline-block;
}
.infos-link:hover { color: var(--rose-framboise); }

.infos-mention {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gris-perle);
  border-left: 1px solid var(--or-rose);
  padding-left: 1.25rem;
  margin: 0;
  line-height: 1.5;
}

.map-frame {
  border: 1px solid var(--or-rose);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
}

/* ---------- 13. Contact ---------- */
/* ---------- Contact ---------- */
.section-contact {
  background: var(--bordeaux);
  padding: 100px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

/* Colonne gauche */
.contact-info-col {
  padding-top: 0.5rem;
}

.contact-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or-rose);
  margin: 0 0 1.5rem;
  display: block;
}

.contact-h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.5rem, 5.5vw, 6rem);
  font-weight: 300;
  color: #FAF5EE;
  margin: 0 0 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.contact-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250, 245, 238, 0.65);
  margin: 0 0 3rem;
  max-width: 34ch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid rgba(201, 165, 124, 0.25);
  padding-top: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-detail-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or-rose);
}

.contact-detail-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 245, 238, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-detail-value:hover { color: var(--or-rose); }

/* Colonne droite — formulaire */
.contact-form-col {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 165, 124, 0.2);
  padding: clamp(2rem, 3.5vw, 3rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.8rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(250, 245, 238, 0.6);
  margin-bottom: 0.6rem;
}

.required { color: var(--or-rose); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 165, 124, 0.25);
  border-radius: 1px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #FAF5EE;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A57C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2rem;
}

.form-group select option {
  background: var(--bordeaux);
  color: #FAF5EE;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--or-rose);
  background: rgba(255, 255, 255, 0.10);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--rose-framboise);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 245, 238, 0.28);
}

/* Honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-actions {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--or-rose);
  color: var(--bordeaux);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover { opacity: 0.88; }

.form-note {
  font-size: 11px;
  font-weight: 300;
  color: rgba(250, 245, 238, 0.35);
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
}

.form-feedback {
  margin-top: 1rem;
  text-align: center;
  font-size: 13px;
  min-height: 1.5em;
}
.form-feedback.is-error  { color: var(--rose-framboise); }
.form-feedback.is-success { color: var(--bordeaux); }

/* ---------- 14. Footer ---------- */
.site-footer {
  background: #140812;
  padding: 70px 0 0;
  text-align: center;
}

/* Grand nom script */
.footer-brand {
  margin-bottom: 2.5rem;
}

.footer-script {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #FAF5EE;
  margin: 0 0 0.6rem;
  line-height: 1;
}

.footer-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(250, 245, 238, 0.4);
  margin: 0;
  letter-spacing: 0.02em;
}

/* Séparateur ornemental */
.footer-sep-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.footer-sep-line span:not(.footer-sep-diamond) {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 165, 124, 0.5));
}

.footer-sep-line span:last-child {
  background: linear-gradient(to left, transparent, rgba(201, 165, 124, 0.5));
}

.footer-sep-diamond {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--or-rose);
  transform: rotate(45deg);
  opacity: 0.7;
}

/* Navigation horizontale */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 2rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 245, 238, 0.45);
  transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--or-rose); }

/* Contacts en ligne */
.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 3rem;
}

.footer-contacts a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(250, 245, 238, 0.6);
  transition: color 0.3s ease;
}

.footer-contacts a:hover { color: var(--or-rose); }

.footer-dot {
  color: rgba(201, 165, 124, 0.4);
  font-size: 1.1rem;
}

/* Bande basse */
.footer-bottom {
  border-top: 1px solid rgba(201, 165, 124, 0.12);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 10px;
  font-weight: 300;
  color: rgba(250, 245, 238, 0.25);
  letter-spacing: 0.08em;
}

.footer-bottom a {
  font-size: 10px;
  font-weight: 300;
  color: rgba(250, 245, 238, 0.25);
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.footer-bottom a:hover { color: var(--or-rose); }

/* ---------- 15. Photos réelles ---------- */
.histoire-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.histoire-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--rose-poudre) 0%, var(--rose-blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.histoire-photo-placeholder p {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-perle);
  line-height: 2;
  margin: 0;
}

.service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.service-card:hover .service-photo {
  transform: scale(1.05);
}

/* ---------- 16. GSAP reveal states ---------- */
.gsap-reveal,
.gsap-reveal-card,
.gsap-reveal-quote {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

/* ---------- 16. Gold bar animated ---------- */
.gold-bar {
  transition: width 1s var(--ease-out);
}

/* ---------- 17. Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  .gsap-reveal,
  .gsap-reveal-card,
  .gsap-reveal-quote,
  .hero-eyebrow,
  .hero-line,
  .hero-lead,
  .hero-rdv-tag,
  .hero-discover,
  .histoire-eyebrow,
  .histoire-grand-titre,
  .histoire-textes,
  .histoire-quote {
    opacity: 1 !important;
    transform: none !important;
  }
  .gold-bar { width: 60px !important; }
  .signature-manuscript { clip-path: none !important; }
  html { scroll-behavior: auto; }
  #intro-overlay { display: none !important; }
}

/* =========================================================
   18. SCROLL CANVAS — Animation cinématique
   ========================================================= */

/* --- Loader --- */
.scroll-loader {
  position: fixed;
  inset: 0;
  background: #0a0608;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}

.scroll-loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.scroll-loader-name {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--ivoire);
  margin: 0;
  letter-spacing: 0.02em;
}

.scroll-loader-track {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  position: relative;
}

.scroll-loader-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: var(--or-rose);
  transition: width 0.15s ease;
}

.scroll-loader-pct {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* --- Section scroll --- */
.scroll-intro {
  height: 550vh;
  position: relative;
}

/* --- Canvas --- */
.scroll-canvas {
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  z-index: 500;
  will-change: opacity;
  transition: opacity 0.05s linear;
}

/* --- Nom de la boutique sur canvas --- */
.scroll-brand {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 501;
  text-align: center;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}

.scroll-brand-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
}

.scroll-brand-name {
  font-family: var(--font-script);
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: #fff;
  margin: 0;
  line-height: 1.05;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

/* --- Invitation à scroller --- */
.scroll-hint {
  position: fixed;
  bottom: 7vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 501;
  pointer-events: none;
  opacity: 0;
}

.scroll-hint-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

.scroll-hint-line {
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.4);
  animation: hint-drop 1.8s ease-in-out infinite;
  animation-delay: 2s;
  transform-origin: top center;
}

@keyframes hint-drop {
  0%, 100% { transform: scaleY(0.6) translateY(0);   opacity: 0.4; }
  50%       { transform: scaleY(1)   translateY(4px);  opacity: 0.9; }
}

/* =========================================================
   19. ATELIER CRÉATIF — Croquis interactif
   ========================================================= */

.section-atelier {
  background: linear-gradient(180deg, var(--rose-pale) 0%, var(--rose-blush) 40%, var(--rose-pale) 100%);
}

.atelier-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ---- Stage : slider gauche + fiche droite ---- */
.atelier-stage {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.atelier-slider-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ---- Sélecteur de taille ---- */
.size-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.size-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gris-perle);
  margin-right: 0.75rem;
}

.size-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d4c6c9;
  color: var(--gris-perle);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.size-btn.is-active {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: #fff;
}

.size-btn:hover:not(.is-active) {
  border-color: var(--bordeaux);
  color: var(--bordeaux);
}

/* ---- Slider 3-up ---- */
.atelier-slider {
  position: relative;
  width: 100%;
}

.slider-track-wrap {
  width: 100%;
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 540px;
}

/* Tous les items cachés par défaut */
.slider-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
  transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
  text-align: center;
  will-change: transform, opacity;
}

/* Item actif — plein centre */
.slider-item.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

/* Voisins — derrière l'actif, proches du centre, pas coupés */
.slider-item.is-prev {
  opacity: 0.18;
  transform: translateX(-20%) scale(0.45);
  pointer-events: auto;
  cursor: pointer;
  z-index: 1;
  filter: grayscale(0.3);
}

.slider-item.is-next {
  opacity: 0.18;
  transform: translateX(20%) scale(0.45);
  pointer-events: auto;
  cursor: pointer;
  z-index: 1;
  filter: grayscale(0.3);
}

/* Frame du croquis */
.slider-frame {
  width: 100%;
  height: 450px;
  flex-shrink: 0;
}

.atelier-sketch-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slider-dress-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--bordeaux);
  margin: 0.8rem 0 0.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slider-dress-sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gris-perle);
  margin: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slider-item.is-active .slider-dress-name,
.slider-item.is-active .slider-dress-sub {
  opacity: 1;
}

.slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bordeaux);
  opacity: 0.5;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.slider-prev { left: 16%; }
.slider-next { right: 16%; }

.slider-arrow:hover { opacity: 1; }

/* ---- Fiche éducative (droite) ---- */
.atelier-info-wrap {
  position: relative;
  min-height: 380px;
}

.atelier-info-card {
  display: none;
}

.atelier-info-card.is-active {
  display: block;
}

.atelier-info-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin: 0 0 0.5rem;
}

.atelier-info-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--bordeaux);
  margin: 0 0 0.75rem;
}

.atelier-info-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gris-perle);
  margin: 0 0 1.25rem;
  font-style: italic;
}

.atelier-info-desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--brun-clair);
  margin: 0 0 1.25rem;
}

.atelier-info-fits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.atelier-info-fits li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--bordeaux);
  padding: 0.35rem 0 0.35rem 1.25rem;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  position: relative;
}

.atelier-info-fits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--or);
  font-size: 0.6rem;
  top: 0.45rem;
}

.atelier-info-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  border-bottom: 1px solid var(--or);
  padding-bottom: 0.25rem;
  text-decoration: none;
  transition: opacity 0.3s ease, letter-spacing 0.3s ease;
}

.atelier-info-cta:hover {
  opacity: 0.7;
  letter-spacing: 0.28em;
}

/* ---- Intro colorisation ---- */
/* ---- Responsive ---- */
@media (max-width: 860px) {
  .atelier-stage {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 48px;
  }
  .atelier-slider-col { width: 100%; }
  .atelier-slider { width: 100%; }
  .atelier-info-wrap { text-align: center; }
  .atelier-info-fits { padding: 0; }
}

@media (max-width: 500px) {
  .slider-track { height: 420px; }
  .slider-frame { height: 350px; }
}

.atelier-h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--bordeaux);
  margin: 0.5rem 0 0;
}

.atelier-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gris-perle);
  margin: 0.75rem 0 0;
}

/* ---------- Overlay succès formulaire ---------- */
.form-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 8, 18, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.form-success-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.form-success-card {
  background: var(--bordeaux);
  border: 1px solid rgba(201, 165, 124, 0.28);
  padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
  max-width: 480px;
  width: calc(100% - 3rem);
  text-align: center;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
}

.form-success-overlay.is-visible .form-success-card {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition-delay: 0.08s;
}

.form-success-ornement {
  margin-bottom: 1.6rem;
}

.fso-circle {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  transition: stroke-dashoffset 0.7s ease 0.35s;
}
.fso-check {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.45s ease 0.9s;
}

.form-success-overlay.is-visible .fso-circle { stroke-dashoffset: 0; }
.form-success-overlay.is-visible .fso-check  { stroke-dashoffset: 0; }

.form-success-script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--or-rose);
  margin: 0 0 0.6rem;
  line-height: 1.1;
}

.form-success-titre {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FAF5EE;
  margin: 0 0 1.2rem;
}

.form-success-texte {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(250, 245, 238, 0.75);
  line-height: 1.7;
  margin: 0 0 2.2rem;
}

.form-success-texte strong {
  color: var(--or-rose);
  font-weight: 500;
}

.form-success-close {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(201, 165, 124, 0.45);
  color: rgba(250, 245, 238, 0.65);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 2.2rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.form-success-close:hover {
  border-color: var(--or-rose);
  color: var(--or-rose);
  background: rgba(201, 165, 124, 0.08);
}

