:root {
  --gold: #c9a96e;
  --gold-light: #e2c98a;
  --gold-dim: #8a6d40;
  --bg: #2b2b2d;
  --bg2: #252527;
  --bg3: #222224;
  --bg4: #1d1d1f;
  --text: #d4c5a9;
  --text-dim: #8a8070;
  --white: #f2ede4;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR — iris diaphragme */
.cursor-star {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: left, top, transform;
}
.cursor-star svg {
  display: block;
  /* État normal — petit, discret */
  filter: drop-shadow(0 0 3px rgba(201, 169, 110, 0.25));
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.3s,
    opacity 0.3s;
  opacity: 0.7;
  transform: scale(0.85);
}
.cursor-star.expand svg {
  /* État cliquable — plein, lumineux, ouvert */
  transform: scale(1.7);
  filter: drop-shadow(0 0 12px rgba(240, 223, 168, 0.9));
  opacity: 1;
}
.cursor-ink {
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.35);
  transition:
    left 0.25s ease,
    top 0.25s ease;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg4);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(29, 29, 31, 0.97) 0%,
    transparent 100%
  );
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(25, 25, 27, 0.97);
  padding: 14px 64px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  backdrop-filter: blur(14px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: "Cinzel", serif;
  font-size: 17px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 130px 40px 100px;
  background: var(--bg4);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 55%,
      rgba(201, 169, 110, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 85% 15%,
      rgba(201, 169, 110, 0.03) 0%,
      transparent 40%
    );
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.hero-logo-wrap {
  margin-bottom: 20px;
  animation: fadeUp 1.2s ease both;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(72px, 12vw, 130px);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  line-height: 1;
  animation: fadeUp 1.2s 0.15s ease both;
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold) 45%,
    var(--gold-dim) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  width: 100%;
  display: block;
}
.hero-sub {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 14px;
  animation: fadeUp 1.2s 0.25s ease both;
  text-align: center;
}
.hero-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold-dim),
    transparent
  );
  margin: 28px auto;
  animation: fadeIn 1.5s 0.4s ease both;
}
.hero-headline {
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  max-width: 680px;
  animation: fadeUp 1.2s 0.35s ease both;
  text-align: center;
}
.hero-tagline {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 22px;
  animation: fadeUp 1.2s 0.45s ease both;
  text-align: center;
}
.hero-dots {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 16px;
  font-size: 17px;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  animation: fadeUp 1.2s 0.5s ease both;
}
.hero-cta {
  margin-top: 56px;
  animation: fadeUp 1.2s 0.6s ease both;
}
.btn-gold {
  display: inline-block;
  padding: 18px 52px;
  border: 1px solid var(--gold);
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
  cursor: none;
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-gold:hover {
  color: var(--bg4);
}
.btn-gold:hover::before {
  transform: scaleX(1);
}
.scroll-hint {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 2s 1s ease both;
}
.scroll-hint span {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s infinite;
}

/* SECTIONS */
section {
  padding: 120px 64px;
  position: relative;
}
.section-label {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.section-label::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}
.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
}
.section-title em {
  color: var(--gold);
  font-style: normal;
}
.section-body {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  max-width: 640px;
}

/* INTRO */
.intro {
  background: var(--bg3);
}
.intro-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 110px;
  align-items: center;
}
.intro-quote {
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  border-left: 2px solid var(--gold);
  padding-left: 34px;
}
.intro-quote::before {
  content: "\201C";
  font-size: 84px;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  line-height: 0.6;
  margin-bottom: 18px;
}

/* APPROACH */
.approach {
  background: var(--bg);
}
.approach-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.approach-card {
  background: var(--bg3);
  padding: 52px 42px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.approach-card:hover {
  background: var(--bg2);
}
.approach-card:hover::before {
  transform: scaleX(1);
}
.card-num {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  margin-bottom: 26px;
}
.card-title {
  font-family: "Cinzel", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 18px;
}
.card-body {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-dim);
}

/* INDICATIONS */
.indications {
  background: var(--bg3);
}
.indications-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.list-elegant {
  list-style: none;
  margin-top: 32px;
}
.list-elegant li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: color 0.3s;
}
.list-elegant li:hover {
  color: var(--gold);
}
.list-elegant li::before {
  content: "—";
  color: var(--gold-dim);
  font-size: 15px;
  flex-shrink: 0;
}

/* PORTRAIT */
.portrait {
  background: var(--bg);
  overflow: hidden;
}
.portrait-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 100px;
  align-items: center;
}
.portrait-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  z-index: 2;
  pointer-events: none;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: grayscale(8%) contrast(1.02) brightness(0.92) saturate(0.85);
  transition: filter 0.6s ease;
}
.portrait-frame:hover .portrait-img {
  filter: grayscale(0%) contrast(1.05) brightness(0.97) saturate(1);
}
/* Vignette overlay — fond dans le décor sombre */
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(34, 34, 36, 0) 55%,
      rgba(34, 34, 36, 0.55) 100%
    ),
    linear-gradient(to right, rgba(34, 34, 36, 0.18) 0%, transparent 30%),
    linear-gradient(to left, rgba(34, 34, 36, 0.18) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}
.portrait-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(29, 29, 31, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
.portrait-frame:hover .portrait-overlay {
  opacity: 1;
}
.portrait-overlay span {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.portrait-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.portrait-placeholder p {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center;
  max-width: 160px;
  opacity: 0.7;
}
#portrait-input {
  display: none;
}
.portrait-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 52px;
}
.stat {
  border-left: 2px solid var(--gold-dim);
  padding-left: 22px;
}
.stat-num {
  font-family: "Cinzel", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
}
.langues-block {
  grid-column: span 2;
  border-left: 2px solid var(--gold-dim);
  padding-left: 22px;
}
.langues-block .stat-label {
  margin-bottom: 14px;
}
.langues-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
}
.langues-list span {
  font-size: 19px;
  font-style: italic;
  color: var(--text);
}

/* FORMATS */
.formats {
  background: var(--bg3);
}
.formats-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.formats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.format-card {
  background: var(--bg);
  padding: 60px 52px;
  position: relative;
  transition: background 0.3s;
}
.format-card:hover {
  background: var(--bg2);
}
.format-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--gold-dim),
    var(--gold),
    var(--gold-dim)
  );
}
.format-type {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
}
.format-name {
  font-family: "Cinzel", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.format-duration {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 28px;
  font-style: italic;
}
.format-price {
  font-family: "Cinzel", serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--gold);
}
.format-price span {
  font-size: 17px;
  color: var(--text-dim);
}
.format-modal {
  font-size: 18px;
  color: var(--text-dim);
  margin-top: 16px;
}
.format-badge {
  display: inline-block;
  margin-top: 22px;
  padding: 7px 18px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* TÉMOIGNAGES */
.temoignages {
  background: var(--bg);
}
.temoignages-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.temoignages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.temoignage-card {
  background: var(--bg3);
  padding: 52px 46px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.temoignage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s;
}
.temoignage-card:hover {
  background: var(--bg2);
}
.temoignage-card:hover::before {
  transform: scaleX(1);
}
.temoignage-guillemet {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.22;
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}
.temoignage-texte {
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 28px;
}
.temoignage-auteur {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  gap: 14px;
}
.temoignage-auteur::before {
  content: "—";
}

/* Placeholder témoignage vide (pour les futurs à ajouter) */
.temoignage-placeholder {
  background: var(--bg3);
  padding: 52px 46px;
  border: 1px dashed rgba(201, 169, 110, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  gap: 14px;
}
.temoignage-placeholder p {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.4;
  text-align: center;
}

/* CAROUSEL TÉMOIGNAGES */
.tem-carousel {
  padding: 0 56px;
  margin-top: 60px;
}
.tem-stage {
  position: relative;
}
.tem-track-wrap {
  overflow: hidden;
}
.tem-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.tem-slide {
  flex-shrink: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.tem-slide .temoignage-card {
  aspect-ratio: 1;
  overflow: hidden;
}
.tem-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: border-color 0.3s, background 0.3s;
  z-index: 2;
}
.tem-prev { left: -56px; }
.tem-next { right: -56px; }
.tem-nav:hover {
  border-color: var(--gold);
  background: var(--bg2);
}
.tem-nav svg { transition: transform 0.3s; }
.tem-prev:hover svg { transform: translateX(-2px); }
.tem-next:hover svg { transform: translateX(2px); }
.tem-counter {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}
.tem-counter-current {
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
}
.tem-counter-sep {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  opacity: 0.45;
}
.tem-counter-total {
  font-family: "Cinzel", serif;
  font-size: 13px;
  color: var(--text-dim);
}

/* CONTACT */
.contact {
  background: var(--bg3);
}
.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-ornament {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: center;
  margin-bottom: 64px;
}
.contact-ornament-line {
  flex: 1;
  max-width: 130px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}
.contact-ornament-line.right {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}
.contact-form {
  margin-top: 60px;
}
.form-group {
  margin-bottom: 32px;
  text-align: left;
}
.form-label {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
  padding: 14px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  cursor: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(212, 197, 169, 0.3);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea {
  resize: none;
  height: 110px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-submit {
  margin-top: 48px;
}
.form-submit button {
  width: 100%;
  background: none;
  border: 1px solid var(--gold);
  padding: 22px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.form-submit button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.form-submit button:hover {
  color: var(--bg4);
}
.form-submit button:hover::before {
  transform: scaleX(1);
}
.form-submit button:disabled {
  opacity: 0.5;
}
.form-note {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: 22px;
  font-style: italic;
  line-height: 1.7;
}
.form-success {
  display: none;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.3);
  margin-top: 28px;
  background: rgba(201, 169, 110, 0.04);
}
.form-success.show {
  display: block;
}
.form-success p {
  font-size: 20px;
  color: var(--gold);
  font-style: italic;
}
.form-error {
  display: none;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(180, 80, 80, 0.35);
  margin-top: 18px;
  background: rgba(180, 80, 80, 0.04);
}
.form-error.show {
  display: block;
}
.form-error p {
  font-size: 17px;
  color: #c87878;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    background 0.3s,
    border-color 0.3s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--bg2);
  border-color: var(--gold);
}
.back-to-top:hover svg {
  transform: translateY(-2px);
}
.back-to-top svg {
  transition: transform 0.3s;
}

/* SOUMETTRE UN TÉMOIGNAGE */
.soumettre-tem {
  background: var(--bg3);
}
.soumettre-tem-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.soumettre-tem-form {
  margin-top: 60px;
  text-align: left;
}
.form-textarea--tall {
  height: 160px;
}
.form-label-note {
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.55;
  text-transform: none;
  font-weight: 300;
}
.tem-consent {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: none;
}
.tem-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: transparent;
  margin-top: 3px;
  cursor: none;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.tem-consent input[type="checkbox"]:checked {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}
.tem-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: 1px solid var(--gold);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.tem-consent-label {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  line-height: 1.7;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding: 48px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg4);
}
footer p {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  padding: 4px 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 300;
  transition: color 0.3s;
  position: relative;
  cursor: none;
}
.lang-btn:hover {
  color: var(--gold);
}
.lang-btn.active {
  color: var(--gold);
}
.lang-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.lang-sep {
  color: rgba(201, 169, 110, 0.25);
  font-size: 10px;
}


/* ═══════════════════════════════════════════
    TABLETTE (600–900px)
═══════════════════════════════════════════ */
@media (max-width: 900px) and (min-width: 601px) {
  section {
    padding: 70px 40px;
  }
  .hero-title {
    font-size: clamp(64px, 10vw, 100px);
  }
  .intro-inner,
  .indications-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .portrait-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portrait-frame {
    max-width: 320px;
    margin: 0 auto;
  }
  .formats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .temoignages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .approach-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════
    MOBILE (≤600px) — iPhone & Android
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Nav */
  nav {
    padding: 16px 18px;
  }
  nav.scrolled {
    padding: 10px 18px;
  }
  .nav-links {
    display: none;
  }
  .nav-logo-text {
    font-size: 13px;
    letter-spacing: 0.2em;
  }
  .lang-switcher {
    gap: 1px;
  }
  .lang-btn {
    padding: 3px 4px;
    font-size: 10px;
  }

  /* Global */
  section {
    padding: 56px 18px;
    width: 100%;
    overflow: hidden;
  }

  /* Hero */
  .hero {
    padding: 100px 18px 80px;
    min-height: 100svh;
  }
  .hero-title {
    font-size: clamp(52px, 16vw, 80px);
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
  .hero-logo-wrap {
    margin-bottom: 16px;
  }
  .hero-logo-wrap svg {
    width: 52px;
    height: 52px;
  }
  .hero-divider {
    height: 24px;
    margin: 20px auto;
  }
  .hero-headline {
    font-size: clamp(18px, 5vw, 24px);
    padding: 0 8px;
  }
  .hero-tagline {
    font-size: 11px;
    letter-spacing: 0.2em;
    padding: 0 8px;
  }
  .hero-dots {
    font-size: 14px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn-gold {
    padding: 14px 28px;
    font-size: 12px;
  }
  .scroll-hint {
    display: none;
  }

  /* Titres sections */
  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }
  .section-body {
    font-size: 17px;
    max-width: 100%;
  }
  .section-label {
    font-size: 9px;
    letter-spacing: 0.25em;
  }

  /* Grilles — toutes en colonne unique */
  .intro-inner,
  .indications-inner,
  .portrait-inner,
  .formats-grid,
  .temoignages-grid,
  .approach-grid,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Fix débordement grille — OBLIGATOIRE */
  .intro-inner > *,
  .indications-inner > *,
  .portrait-inner > *,
  .temoignages-grid > *,
  .approach-grid > *,
  .formats-grid > * {
    min-width: 0;
    width: 100%;
  }

  /* Intro */
  .intro-quote {
    font-size: 18px;
    padding-left: 16px;
  }

  /* Approche */
  .approach-card {
    padding: 32px 24px;
  }
  .card-num {
    font-size: 36px;
  }
  .card-title {
    font-size: 18px;
  }
  .card-body {
    font-size: 16px;
  }

  /* Indications */
  .list-elegant li {
    font-size: 17px;
    padding: 14px 0;
  }

  /* Portrait — praticien */
  .portrait {
    overflow: hidden;
  }
  .portrait-inner {
    width: 100%;
  }
  .portrait-inner > * {
    overflow: hidden;
  }
  .portrait-frame {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    display: block;
  }
  .portrait-frame::after {
    display: none;
  }
  .portrait-inner .section-title {
    font-size: 24px;
  }
  .portrait-inner .section-body {
    font-size: 16px;
    line-height: 1.7;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .portrait-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
    width: 100%;
  }
  .stat-num {
    font-size: 20px;
  }
  .stat-label {
    font-size: 11px;
  }
  .langues-list {
    flex-wrap: wrap;
    gap: 6px 12px;
  }
  .langues-list span {
    font-size: 14px;
  }

  /* Formats */
  .format-card {
    padding: 36px 24px;
  }
  .format-name {
    font-size: 20px;
  }
  .format-price {
    font-size: 22px;
  }

  /* Témoignages */
  .temoignage-card {
    padding: 32px 24px;
  }
  .temoignage-texte {
    font-size: 17px;
  }
  .temoignage-guillemet {
    font-size: 60px;
  }

  /* Contact */
  .contact-form {
    padding: 36px 0 0;
  }
  .form-input,
  .form-textarea {
    font-size: 17px;
  }
  .form-submit button {
    width: 100%;
    padding: 16px;
    font-size: 13px;
  }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 32px 18px;
  }

  .tem-carousel {
    padding: 0;
    margin-top: 36px;
  }
  .tem-slide {
    grid-template-columns: 1fr;
  }
  .tem-slide .temoignage-card {
    aspect-ratio: unset;
  }
  .tem-nav {
    display: none;
  }
  .tem-counter {
    margin-top: 24px;
  }

  .form-textarea--tall {
    height: 130px;
  }
  .tem-consent {
    cursor: pointer;
  }
  .tem-consent input[type="checkbox"] {
    cursor: pointer;
  }

  /* Curseur désactivé sur tactile */
  body {
    cursor: auto;
  }
  .cursor-star,
  .cursor-ink {
    display: none;
  }
  .back-to-top {
    bottom: 20px;
    right: 18px;
    width: 38px;
    height: 38px;
    cursor: pointer;
  }
}

/* ═══════════════════════════════════════════
    iOS Safari — fix spécifiques
═══════════════════════════════════════════ */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: 100svh;
  }
  /* Fix webkit background-clip text */
  .hero-title {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  /* Fix smooth scroll iOS */
  html {
    -webkit-overflow-scrolling: touch;
  }
  /* Fix input zoom iOS — font-size min 16px */
  .form-input,
  .form-textarea {
    font-size: 16px;
  }
}
