/* ══════════════════════════════════════════
   VISION GLAM BEAUTY — style.css
   Palette : Crème · Rose Gold · Chocolat
══════════════════════════════════════════ */

:root {
  --cream: #f9f4ef;
  --ivory: #fdfaf6;
  --rose-gold: #c58d60;
  --rose-gold-light: #e5b394;
  --rose-gold-dark: #9e6d45;
  --chocolate: #2b160d;
  --chocolate-mid: #4a2614;
  --chocolate-light: #6b351c;
  --blush: #f4dcd0;
  --gold: #d4a574;
  --white-soft: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--ivory);
  color: var(--chocolate);
  overflow-x: hidden;
}

/* ──── CUSTOM CURSOR ──── */
.cursor {
  position: fixed;
  top: -50px; left: -50px;
  width: 12px; height: 12px;
  background: #c58d60;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
}
.cursor-ring {
  position: fixed;
  top: -50px; left: -50px;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(197, 141, 96, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
}
@media (pointer: fine) {
  body { cursor: none; }
}
@media (pointer: coarse), (hover: none) {
  .cursor, .cursor-ring { display: none; }
}

/* ──── LOADER ──── */
#loader {
  position: fixed; inset: 0;
  background: var(--chocolate);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  background: linear-gradient(135deg, #c9956c, #e8b89a, #d4a574, #c9956c);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 2s linear infinite;
  letter-spacing: 0.3em;
}
.loader-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--rose-gold-light);
  margin-top: 0.5rem;
  text-transform: uppercase;
}
.loader-bar-wrap {
  width: 200px; height: 1px;
  background: rgba(201,149,108,0.2);
  margin-top: 2.5rem; overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--rose-gold), var(--rose-gold-light));
  animation: loadBar 2.2s ease forwards;
}
@keyframes loadBar { from { width: 0; } to { width: 100%; } }
@keyframes shimmerText {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ──── PARTICLES CANVAS ──── */
#particles-canvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ──── NAV ──── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, box-shadow 0.5s, padding 0.4s;
  /* Force GPU layer — évite le bug iOS position:fixed avec overflow-x:hidden */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
nav.scrolled {
  background: rgba(250,246,241,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(61,31,18,0.08);
  padding: 0.8rem 4rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--chocolate);
  text-decoration: none;
  position: relative;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--rose-gold);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-links a:hover { color: var(--rose-gold); }
.nav-links a:hover::after { width: 100%; }
.nav-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(197, 141, 96, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
}
.nav-admin-link svg {
  width: 0.95rem;
  height: 0.95rem;
}
.nav-admin-link::after {
  display: none;
}
.nav-admin-link:hover {
  background: rgba(197, 141, 96, 0.12);
  border-color: var(--rose-gold);
  transform: translateY(-1px);
}
.nav-cta {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--rose-gold);
  color: var(--rose-gold);
  text-decoration: none;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--rose-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-cta:hover { color: white; }
.nav-cta:hover::before { transform: scaleX(1); }
.nav-cta span { position: relative; z-index: 1; }

/* ──── HERO ──── */
#hero {
  min-height: 100vh;
  padding-top: 90px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--cream) 40%, var(--blush) 100%);
}
.hero-silk {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,149,108,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(201,149,108,0.08) 0%, transparent 60%);
  animation: silkMove 8s ease-in-out infinite alternate;
}
@keyframes silkMove {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1.05) rotate(1deg); }
}
.hero-lines {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      -30deg,
      transparent,
      transparent 80px,
      rgba(201,149,108,0.04) 80px,
      rgba(201,149,108,0.04) 81px
    );
}
.hero-content {
  text-align: center;
  position: relative; z-index: 2;
  padding: 0 2rem;
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--chocolate);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s 0.7s forwards;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--rose-gold);
  opacity: 0;
  animation: fadeUp 1.2s 0.9s forwards;
  display: block;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--chocolate-light);
  max-width: 400px;
  margin: 0 auto 2.5rem;
  line-height: 2;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
  text-transform: uppercase;
}
.hero-btns {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
  margin-bottom: 4rem;
}
.btn-primary {
  padding: 1rem 2.8rem;
  background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold), var(--rose-gold-light));
  background-size: 200%;
  color: white;
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: background-position 0.5s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 40px rgba(201,149,108,0.4);
}
.btn-primary:hover {
  background-position: right;
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(201,149,108,0.5);
}
.btn-secondary {
  padding: 1rem 2.8rem;
  border: 1px solid var(--chocolate);
  color: var(--chocolate);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: transparent;
  cursor: none;
  transition: all 0.4s;
}
.btn-secondary:hover {
  background: var(--chocolate);
  color: var(--cream);
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.8s forwards;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-gold);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--rose-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ──── MARQUEE STRIP ──── */
.marquee-strip {
  background: var(--chocolate);
  padding: 1rem 0;
  overflow: hidden;
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  flex-shrink: 0;
}
.marquee-dot { width: 4px; height: 4px; background: var(--rose-gold); border-radius: 50%; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ──── SECTION BASE ──── */
section { position: relative; z-index: 1; }
.section-tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.section-tag::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 1.8rem; height: 1px;
  background: var(--rose-gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--chocolate);
}
.section-title em {
  font-style: italic;
  color: var(--rose-gold);
}

/* ──── ABOUT (redesign) ──── */
#about {
    --dark-bg: #0a0706;
    --dark-panel: #140d0a;
    background-color: var(--dark-bg);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 6rem;
}
@media (min-width: 1024px) {
    #about { padding-top: 8rem; padding-bottom: 12rem; }
}
#about .vgb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
    overflow: hidden; /* Prevent child overflow */
}
#about .vgb-stats-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 1.25rem;
    position: relative;
    z-index: 20;
}
@media (min-width: 1024px) {
    #about .vgb-container,
    #about .vgb-stats-container { padding: 0 3rem; }
    #about .vgb-stats-container { margin-top: 8rem; }
}
#about .vgb-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    #about .vgb-grid { grid-template-columns: 5fr 7fr; gap: 6rem; }
}
#about .vgb-flex-col { display: flex; flex-direction: column; }
#about .vgb-header-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--rose-gold-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
#about .vgb-header-label::before {
    content: '';
    display: block;
    height: 1px;
    width: 2rem;
    background-color: var(--rose-gold);
}
#about .vgb-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 8vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { 
    #about .vgb-title { font-size: 3.5rem; margin-bottom: 2rem; } 
}
#about .text-gradient {
    background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--rose-gold) 50%, var(--chocolate) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}
#about .vgb-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--blush);
    margin-bottom: 2rem;
}
@media (min-width: 1024px) { #about .vgb-quote { font-size: 1.875rem; margin-bottom: 3rem; } }
#about .vgb-body-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: rgba(245, 237, 230, 0.8);
    line-height: 1.8;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}
@media (min-width: 1024px) { #about .vgb-body-text { font-size: 1rem; margin-bottom: 2.5rem; } }
#about .vgb-body-highlight { color: var(--rose-gold-light); font-weight: 500; }
#about .vgb-conclusion { border-left: 2px solid var(--chocolate); padding-left: 1.25rem; }
#about .portrait-container {
    position: relative;
    padding: 1rem;
    z-index: 10;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    #about .portrait-container { padding: 1.5rem; margin: 0; }
}
#about .portrait-container::before,
#about .portrait-container::after {
    content: '';
    position: absolute;
    width: 40px; height: 40px;
    border: 1px solid var(--rose-gold);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    z-index: 1;
}
@media (min-width: 1024px) {
    #about .portrait-container::before,
    #about .portrait-container::after { width: 60px; height: 60px; }
}
#about .portrait-container::before {
    top: 0; left: 0;
    border-bottom: none; border-right: none;
    transform: translate(-10px, -10px);
}
#about .portrait-container::after {
    bottom: 0; right: 0;
    border-top: none; border-left: none;
    transform: translate(10px, 10px);
}
@media (min-width: 1024px) {
    #about .portrait-container::before { transform: translate(-20px, -20px); }
    #about .portrait-container::after { transform: translate(20px, 20px); }
}
#about .portrait-container.is-visible::before,
#about .portrait-container.is-visible::after {
    opacity: 1;
    transform: translate(0, 0);
}
#about .image-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 149, 108, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    z-index: 2;
    aspect-ratio: 3/4;
    width: 100%;
}
#about .image-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    filter: grayscale(20%) contrast(125%) brightness(90%);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#about .portrait-container:hover .image-wrapper img { transform: scale(1.05); }
#about .image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--dark-bg) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}
#about .signature-block {
    position: absolute;
    bottom: -1.5rem; 
    right: 1.5rem;
    z-index: 20;
    transform: rotate(-6deg);
    text-align: right;
}
@media (min-width: 1024px) { 
    #about .signature-block { bottom: -2rem; right: -3rem; } 
}
#about .signature-name {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--rose-gold-light);
    text-shadow: 0 10px 15px rgba(0,0,0,0.5);
    opacity: 0.9;
    margin: 0; line-height: 1;
}
@media (min-width: 1024px) { #about .signature-name { font-size: 4.5rem; } }
#about .signature-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--rose-gold-light);
    text-transform: uppercase;
    margin-left: 1.5rem;
    opacity: 1;
    margin-top: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
@media (min-width: 1024px) { #about .signature-sub { font-size: 12px; margin-left: 2rem; } }
#about .quote-block { position: relative; z-index: 2; }
#about .quote-block::before {
    content: '\201C';
    position: absolute;
    top: -30px; left: -10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(201, 149, 108, 0.1);
    z-index: -1;
    pointer-events: none;
}
@media (min-width: 1024px) { #about .quote-block::before { font-size: 8rem; top: -40px; left: -20px; } }
#about .journey-timeline {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 2.5rem;
}
#about .journey-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 7px;
    width: 1px;
    background: linear-gradient(to bottom, var(--rose-gold) 0%, rgba(201, 149, 108, 0.1) 100%);
    z-index: 0;
}
#about .timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
#about .timeline-item::before {
    content: '';
    position: absolute;
    left: -1.75rem; top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background-color: var(--dark-bg);
    border: 2px solid var(--rose-gold);
    transform: translateX(1.5px);
    transition: all 0.5s ease;
    z-index: 1;
}
@media (min-width: 1024px) {
    #about .timeline-item { margin-bottom: 2rem; }
    #about .timeline-item::before { width: 15px; height: 15px; left: -2rem; transform: translateX(0.5px); }
}
#about .timeline-item.is-visible::before {
    background-color: var(--rose-gold);
    box-shadow: 0 0 15px rgba(201, 149, 108, 0.4);
}
#about .timeline-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    margin: 0;
}
#about .timeline-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--rose-gold);
    text-transform: uppercase;
    margin: 0.25rem 0 0 0;
}
#about .glass-panel {
    background: rgba(61, 31, 18, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 149, 108, 0.15);
    border-top: 1px solid rgba(232, 184, 154, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
}
@media (min-width: 1024px) { #about .glass-panel { padding: 2rem 3rem; } }
#about .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    #about .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
#about .stat-item { text-align: center; padding: 1rem 0; }
@media (max-width: 767px) {
    #about .stat-item { border-top: 1px solid rgba(61, 31, 18, 0.5); }
    #about .stat-item:first-child { border-top: none; padding-top: 0; }
}
@media (min-width: 768px) {
    #about .stat-item { border-left: 1px solid rgba(61, 31, 18, 0.5); padding: 0; }
    #about .stat-item:first-child { border-left: none; }
}
#about .stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--rose-gold-light);
    margin-bottom: 0.5rem;
    line-height: 1;
}
@media (min-width: 1024px) { #about .stat-number-wrapper { font-size: 3.75rem; } }
#about .stat-plus { font-size: 1.875rem; margin-left: 0.25rem; }
#about .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(245, 237, 230, 0.7);
    text-transform: uppercase;
    margin: 0;
}
#about .btn-luxury {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--rose-gold-light);
    border: 1px solid var(--rose-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    z-index: 1;
    text-decoration: none;
    margin-top: 1rem;
    cursor: pointer;
}
#about .btn-luxury::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--rose-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
#about .btn-luxury:hover { color: var(--dark-bg); border-color: var(--rose-gold); }
#about .btn-luxury:hover::before { transform: scaleX(1); transform-origin: left; }
#about .btn-icon-svg {
    width: 16px; height: 16px;
    fill: currentColor;
    margin-left: 0.75rem;
    opacity: 0;
    transform: translateX(-0.5rem);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#about .btn-luxury:hover .btn-icon-svg { opacity: 1; transform: translateX(0); }
#about .particles-container {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
#about .particle {
    position: absolute;
    border-radius: 50%;
    background: var(--rose-gold);
    opacity: 0.3;
    animation: vgbFloat 15s infinite linear;
}
@keyframes vgbFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    20% { opacity: 0.4; }
    80% { opacity: 0.4; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}
#about .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
#about .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
#about .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
#about .is-visible { opacity: 1 !important; transform: translate(0, 0) !important; }
#about .delay-100 { transition-delay: 100ms; }
#about .delay-200 { transition-delay: 200ms; }
#about .delay-300 { transition-delay: 300ms; }
#about .delay-400 { transition-delay: 400ms; }

/* ──── SERVICES ──── */
#services {
  padding: 8rem 4rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}
.services-header { text-align: center; margin-bottom: 5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card, .tarif-card, .port-inner {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 149, 108, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  border-radius: 12px;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--chocolate) 0%, var(--chocolate-mid) 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(61,31,18,0.15); }
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover .service-icon,
.service-card:hover .service-name,
.service-card:hover .service-desc,
.service-card:hover .service-price,
.service-card:hover .service-line { color: var(--cream) !important; border-color: rgba(201,149,108,0.3) !important; }
.service-card:hover .service-icon { color: var(--rose-gold-light) !important; }
.service-card > * { position: relative; z-index: 1; }
.service-num {
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,149,108,0.12);
  line-height: 1;
  transition: color 0.5s;
}
.service-card:hover .service-num { color: rgba(201,149,108,0.15); }
.service-icon {
  font-size: 2rem;
  color: var(--rose-gold);
  margin-bottom: 1.5rem;
  display: block;
  transition: color 0.5s;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--chocolate);
  margin-bottom: 1rem;
  transition: color 0.5s;
}
.service-desc {
  font-size: 0.72rem;
  line-height: 1.9;
  color: var(--chocolate-light);
  margin-bottom: 1.5rem;
  transition: color 0.5s;
}
.service-line {
  height: 1px;
  background: rgba(201,149,108,0.2);
  margin-bottom: 1.5rem;
  transition: background 0.5s;
}
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--rose-gold);
  transition: color 0.5s;
}

/* ──── FORMATIONS ──── */
/* ──── FORMATIONS (before/after redesign) ──── */
#formations {
    background-color: #0a0706;
    color: #f5ece6;
    font-family: 'Montserrat', sans-serif;
    padding: 5vw 2vw;
    overflow: hidden;
    position: relative;
}
#formations * { box-sizing: border-box; }

/* Header */
.fgb-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(201, 149, 108, 0.2);
    padding-bottom: 30px;
}
.fgb-header-left { display: flex; flex-direction: column; gap: 16px; max-width: 600px; }
.fgb-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--rose-gold);
    display: flex; align-items: center; gap: 12px;
}
.fgb-tag::before { content: ''; width: 24px; height: 1px; background-color: var(--rose-gold); }
.fgb-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1; font-weight: 300;
    color: var(--cream); margin: 0;
}
.fgb-cta {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--rose-gold-light); text-decoration: none;
    transition: all 0.4s ease; padding-bottom: 8px; position: relative;
}
.fgb-cta::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0%; height: 1px; background-color: var(--rose-gold-light);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.fgb-cta:hover { color: var(--cream); }
.fgb-cta:hover::after { width: 100%; }

/* Grid */
.fgb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 420px;
    gap: clamp(16px, 2vw, 32px);
}
.fgb-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #110c0a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: translateZ(0);
}
.fgb-card-feature {
    grid-column: span 2;
    grid-row: span 2;
}

/* Image layers — fondu automatique Avant/Après */
.fgb-card-inner { position: absolute; inset: 0; width: 100%; height: 100%; }
.fgb-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain; object-position: center;
    background-color: #000;
    display: block;
}
.fgb-card:nth-child(1) .fgb-img,
.fgb-card:nth-child(2) .fgb-img,
.fgb-card:nth-child(5) .fgb-img,
.fgb-card:nth-child(6) .fgb-img {
    object-fit: cover;
    background-color: transparent;
}
/* L'image "après" est visible en premier, l'image "avant" est en dessous */
.fgb-img-after {
    z-index: 2;
    animation: fgbCrossfade 6s ease-in-out infinite;
}
.fgb-img-before {
    z-index: 1;
}
/* Cycle : visible 3s → fondu sortie 0.8s → invisible 1.4s → fondu entrée 0.8s */
@keyframes fgbCrossfade {
    0%    { opacity: 1; }
    45%   { opacity: 1; }
    55%   { opacity: 0; }
    90%   { opacity: 0; }
    100%  { opacity: 1; }
}
/* Décalages pour que les cartes ne changent pas toutes en même temps */
.fgb-card:nth-child(1) .fgb-img-after { animation-delay: 0s; }
.fgb-card:nth-child(2) .fgb-img-after { animation-delay: 1s; }
.fgb-card:nth-child(3) .fgb-img-after { animation-delay: 2s; }
.fgb-card:nth-child(4) .fgb-img-after { animation-delay: 0.5s; }
.fgb-card:nth-child(5) .fgb-img-after { animation-delay: 1.5s; }
.fgb-card:nth-child(6) .fgb-img-after { animation-delay: 2.5s; }

/* Rose-gold color grade sur l'image "après" */
.fgb-grade-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201, 149, 108, 0.2) 0%, rgba(10, 7, 6, 0.05) 100%);
    mix-blend-mode: soft-light;
    pointer-events: none; z-index: 3;
}

/* Card footer (titre + prix) — toujours visible */
.fgb-card-footer {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px 24px 24px 24px;
    background: linear-gradient(to top, rgba(10,7,6,0.95) 0%, rgba(10,7,6,0.6) 60%, transparent 100%);
    display: flex; justify-content: space-between; align-items: flex-end;
    z-index: 10; pointer-events: none;
}
.fgb-title-wrap { display: flex; flex-direction: column; gap: 4px; }
.fgb-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400;
    margin: 0; letter-spacing: 0.5px; color: #f5ece6;
}
.fgb-card-feature .fgb-card-title { font-size: 2.2rem; }
.fgb-card-subtitle {
    font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--rose-gold); margin: 0; font-weight: 500;
}
.fgb-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; color: var(--rose-gold); font-weight: 600; margin: 0;
}
.fgb-card-feature .fgb-price { font-size: 2rem; }

/* ── Bouton Reserver sur carte ── */
.fgb-book-btn {
  pointer-events: auto;
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, #9e6d45, #c58d60);
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: absolute;
  right: 24px;
  bottom: 60px;
}
.fgb-book-btn:hover {
  background: linear-gradient(135deg, #c58d60, #e5b394);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 141, 96, 0.35);
}

/* ── Description panels ── */
.fgb-desc-panel {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,7,6,0.97) 0%,
    rgba(10,7,6,0.90) 30%,
    rgba(10,7,6,0.55) 52%,
    transparent 72%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 1.5rem 84px;
  opacity: 0;
  transition: opacity 0.38s ease;
  z-index: 8;
  pointer-events: none;
}
.fgb-card:hover .fgb-desc-panel,
.fgb-card.fgb-active .fgb-desc-panel {
  opacity: 1;
}
.fgb-desc-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(250,246,241,0.88);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.fgb-desc-booking {
  font-size: 0.67rem;
  color: rgba(250,246,241,0.65);
  line-height: 1.7;
  margin: 0.35rem 0 0.4rem;
  font-weight: 300;
}
.fgb-desc-note {
  display: block;
  font-size: 0.59rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #c58d60;
  font-weight: 400;
  margin-top: 0.3rem;
}

/* Info button — mobile only */
.fgb-info-btn {
  position: absolute;
  top: 20px; right: 20px;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(197,141,96,0.5);
  background: rgba(10,7,6,0.55);
  backdrop-filter: blur(4px);
  color: #c58d60;
  font-size: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 11;
  pointer-events: auto;
  transition: background 0.2s, border-color 0.2s;
  padding: 0; line-height: 1;
}
.fgb-card.fgb-active .fgb-info-btn {
  background: rgba(197,141,96,0.2);
  border-color: #c58d60;
}
@media (hover: none) {
  .fgb-info-btn { display: flex; }
}

/* Badges numérotés */
.fgb-num-badge {
    position: absolute; top: 24px; left: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; font-size: 0.85rem; letter-spacing: 3px;
    color: rgba(245, 236, 230, 0.5); z-index: 10;
}

/* Scroll animations */
.fgb-anim-item {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.fgb-anim-item.fgb-anim-visible { opacity: 1; transform: translateY(0) scale(1); }
.fgb-card:nth-child(1) { transition-delay: 0.1s; }
.fgb-card:nth-child(2) { transition-delay: 0.2s; }
.fgb-card:nth-child(3) { transition-delay: 0.3s; }
.fgb-card:nth-child(4) { transition-delay: 0.4s; }
.fgb-card:nth-child(5) { transition-delay: 0.5s; }
.fgb-card:nth-child(6) { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
    .fgb-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 400px; }
    .fgb-card-feature { grid-column: span 2; grid-row: span 1; }
    .fgb-card-feature .fgb-card-title { font-size: 1.8rem; }
}
@media (max-width: 768px) {
    #formations { padding: 80px 24px; }
    .fgb-header { flex-direction: column; align-items: flex-start; gap: 30px; margin-bottom: 40px; }
    .fgb-grid { grid-template-columns: 1fr; grid-auto-rows: 380px; }
    .fgb-card-feature { grid-column: span 1; grid-row: span 1; }
    .fgb-img {
        object-fit: cover;
        background-color: transparent;
    }
    .fgb-card-footer { padding: 30px 20px 18px; }
    .fgb-card-title { font-size: 1.25rem; }
    .fgb-desc-panel { padding: 0 1.2rem 70px; }
    .fgb-info-btn { width: 34px; height: 34px; font-size: 0.9rem; }
}

/* ── Sous-sections (Prestation / Forfait / Mariage) ── */
.fgb-sub-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px 0 28px;
}
.fgb-sub-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  white-space: nowrap;
}
.fgb-sub-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,149,108,0.5), rgba(201,149,108,0.05));
}

/* ── Forfait section layout ── */
.fgb-forfait-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 32px);
  align-items: stretch;
  min-height: 340px;
}
.fgb-forfait-img-wrap {
  position: relative;
  min-height: 340px;
}

/* ── Forfait list card ── */
.fgb-forfait-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,149,108,0.15);
  border-radius: 4px;
  padding: 32px 36px;
}
.forfait-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,149,108,0.1);
}
.forfait-item:last-of-type { border-bottom: none; }
.forfait-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.forfait-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.forfait-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose-gold);
  flex-shrink: 0;
}
.forfait-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #f5ece6;
  letter-spacing: 0.03em;
}
.forfait-detail {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(245,236,230,0.45);
  text-transform: uppercase;
  margin-top: 2px;
}
.forfait-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--rose-gold);
  flex-shrink: 0;
}
.forfait-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  line-height: 1.6;
  color: rgba(245,236,230,0.5);
  padding-left: 19px;
  margin: 0;
}
.forfait-cta {
  display: block;
  margin-top: auto;
  padding: 12px 24px;
  border: 1px solid rgba(201,149,108,0.4);
  color: var(--rose-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s, color 0.3s;
  margin-top: 24px;
}
.forfait-cta:hover {
  background: rgba(201,149,108,0.12);
  color: var(--rose-gold-light);
}
@media (max-width: 768px) {
  .fgb-forfait-section { grid-template-columns: 1fr; }
  .fgb-forfait-img-wrap { min-height: 320px; }
  .fgb-forfait-list { padding: 24px 20px; }
}

/* ── Section Mariage (liste gauche + cartes droite) ── */
.fgb-mariage-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 32px);
  align-items: stretch;
}
.fgb-mariage-list {
  justify-content: flex-start;
}
.fgb-mariage-list .forfait-cta {
  margin-top: auto;
}
.fgb-mariage-cards {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(12px, 1.5vw, 20px);
  min-height: 560px;
}
.fgb-mariage-cards .fgb-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 260px;
}
/* ── Redimensionnement Forfait Diana & Ryma (PC uniquement) ── */
@media (min-width: 769px) {
  .fgb-diana {
    min-height: 350px; /* hauteur de la carte Diana — modifie cette valeur */
  }
  .fgb-diana .fgb-img {
    object-fit: cover;
    object-position: center 25%; /* cadrage vertical — 0% = haut, 50% = centre, 100% = bas */
  }
  .fgb-ryma {
    min-height: 300px; /* hauteur de la carte Ryma — modifie cette valeur */
  }
  .fgb-ryma .fgb-img {
    object-fit: cover;
    object-position: center 25%; /* cadrage vertical — 0% = haut, 50% = centre, 100% = bas */
  }
}
@media (max-width: 768px) {
  .fgb-mariage-section { grid-template-columns: 1fr; }
  .fgb-mariage-cards { min-height: auto; }
  .fgb-mariage-cards .fgb-card { min-height: 340px; }
}

/* ════════ COURS AUTO-MAQUILLAGE ════════ */
#cours-maquillage {
  background-color: #0a0706;
  padding: 5rem 0 0;
}
.f-sect-header {
  text-align: center;
  padding: 0 2rem 4rem;
  max-width: 740px;
  margin: 0 auto;
}
.f-sect-tag {
  display: inline-block;
  font-size: 0.67rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.2rem;
}
.f-sect-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 1.2rem;
}
.f-sect-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.f-sect-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(197,141,96,0.35);
  background: rgba(74,38,20,0.25);
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
}
.f-sect-badge::before { content: '◈'; color: var(--rose-gold); font-size: 0.6rem; }

.f-split {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.f-photo-wrap { position: relative; }
.f-photo-frame { position: relative; z-index: 1; }
.f-photo-frame::after {
  content: '';
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(197,141,96,0.45);
  z-index: -1;
  transition: inset 0.5s cubic-bezier(0.19,1,0.22,1), opacity 0.4s;
  opacity: 0.6;
}
.f-photo-frame:hover::after {
  inset: -8px 8px 8px -8px;
  opacity: 1;
  box-shadow: 0 0 30px rgba(197,141,96,0.1);
}
.f-photo-frame img {
  width: 100%; height: auto;
  aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  display: block;
  filter: contrast(1.06) brightness(0.9);
}
.f-photo-deco {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 120px; height: 120px;
  border-right: 1px solid rgba(197,141,96,0.3);
  border-bottom: 1px solid rgba(197,141,96,0.3);
  pointer-events: none; z-index: 2;
}

.f-text-side { display: flex; flex-direction: column; }
.f-text-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.67rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.5rem;
}
.f-text-tag::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--rose-gold);
}
.f-text-side h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 2.2rem;
}
.f-text-side h2 em { font-style: italic; font-weight: 300; color: var(--rose-gold-light); }
.f-duration-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(197,141,96,0.2);
  background: rgba(74,38,20,0.15);
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,246,241,0.55);
}
.f-duration-pill strong { color: var(--rose-gold-light); font-weight: 500; }
.f-text-side p {
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(250,246,241,0.75);
  margin-bottom: 1.2rem;
}
.f-text-side p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 600;
  color: var(--rose-gold);
  float: left;
  line-height: 0.8;
  margin-right: 0.12em; margin-top: 0.05em;
}
.f-text-side p:last-of-type { margin-bottom: 0; }
.f-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-light) 100%);
  color: #0a0706;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.f-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.55s ease;
}
.f-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 35px -8px rgba(197,141,96,0.5); }
.f-cta:hover::before { left: 100%; }

.f-features {
  border-top: 1px solid rgba(74,38,20,0.35);
  background: rgba(43,22,13,0.18);
  padding: 4rem 2.5rem;
}
.f-features-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.f-feat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.f-feat-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(197,141,96,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: background 0.4s, border-color 0.4s, transform 0.4s cubic-bezier(0.19,1,0.22,1);
}
.f-feat:hover .f-feat-icon {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  transform: translateY(-5px);
}
.f-feat h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--ivory); margin-bottom: 0.4rem;
}
.f-feat p { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,246,241,0.4); }

/* Scroll reveal */
.f-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.1s cubic-bezier(0.19,1,0.22,1), transform 1.1s cubic-bezier(0.19,1,0.22,1);
}
.f-reveal.f-visible { opacity: 1; transform: translateY(0); }
.f-reveal-d1 { transition-delay: 0.1s; }
.f-reveal-d2 { transition-delay: 0.2s; }
.f-reveal-d3 { transition-delay: 0.3s; }
.f-reveal-d4 { transition-delay: 0.4s; }

@media (max-width: 900px) {
  .f-split { grid-template-columns: 1fr; gap: 4rem; padding: 0 1.5rem 4rem; }
  .f-photo-deco { display: none; }
  .f-features-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (max-width: 560px) {
  .f-features-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .f-features { padding: 3rem 1.25rem; }
  .f-sect-header { padding: 0 1.25rem 3rem; }
}

/* ──── PROCESS ──── */
#process {
  padding: 8rem 4rem;
  background: var(--ivory);
}
.process-header { text-align: center; margin-bottom: 5rem; }
.process-timeline {
  display: flex;
  position: relative;
  gap: 0;
}
.process-timeline::before {
  content: '';
  position: absolute; top: 4rem; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold), var(--rose-gold-light), var(--rose-gold), transparent);
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.step-circle {
  width: 5rem; height: 5rem;
  border: 1px solid var(--rose-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  background: var(--ivory);
  position: relative; z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--rose-gold);
  transition: all 0.4s;
}
.process-step:hover .step-circle {
  background: var(--rose-gold);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(201,149,108,0.4);
}
.step-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--chocolate);
  margin-bottom: 0.8rem;
}
.step-desc {
  font-size: 0.7rem;
  line-height: 1.9;
  color: var(--chocolate-light);
}

/* ──── TESTIMONIALS ──── */
#testimonials {
  padding: 8rem 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 50%, var(--cream) 100%);
  overflow: hidden;
}
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testi-slider { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.testi-card {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
}
.testi-inner {
  max-width: 700px; text-align: center;
}
.testi-stars {
  display: flex; justify-content: center; gap: 0.4rem;
  margin-bottom: 2rem;
}
.star { color: var(--rose-gold); font-size: 1rem; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--chocolate);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.testi-author {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-gold);
}
.testi-dots {
  display: flex; justify-content: center; gap: 0.6rem;
  margin-top: 3rem;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,149,108,0.3);
  cursor: none;
  transition: all 0.3s;
}
.dot.active { background: var(--rose-gold); width: 24px; border-radius: 3px; }

/* ──── ENTRETIEN ──── */
#entretien {
  padding: 8rem 4rem;
  background: var(--white-soft);
}
.entretien-header { text-align: center; margin-bottom: 5rem; }
.entretien-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px; margin: 0 auto;
}
.tarif-card {
  border: 1px solid rgba(201,149,108,0.2);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: none;
  background: var(--ivory);
}
.tarif-card.featured {
  background: var(--chocolate);
  border-color: var(--rose-gold);
  transform: scale(1.05);
}
.tarif-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(61,31,18,0.12); }
.tarif-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.tarif-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold-light));
  color: white;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
}
.tarif-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--chocolate);
}
.tarif-card.featured .tarif-name { color: var(--cream); }
.tarif-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--rose-gold);
  line-height: 1;
  margin: 1.5rem 0 0.5rem;
}
.tarif-unit {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--rose-gold-light);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.tarif-features { list-style: none; margin-bottom: 2.5rem; }
.tarif-features li {
  font-size: 0.72rem;
  line-height: 2;
  color: var(--chocolate-light);
  border-bottom: 1px solid rgba(201,149,108,0.1);
  padding: 0.5rem 0;
}
.tarif-card.featured .tarif-features li { color: rgba(250,246,241,0.7); border-color: rgba(201,149,108,0.2); }
.tarif-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--rose-gold);
  color: var(--rose-gold);
  transition: all 0.4s;
  cursor: none;
}
.tarif-card.featured .tarif-btn {
  background: var(--rose-gold);
  color: white;
  border-color: var(--rose-gold);
}
.tarif-btn:hover { background: var(--rose-gold); color: white; }

/* ──── CONTACT ──── */
#contact {
  padding: 8rem 4rem;
  background: var(--chocolate);
  position: relative; overflow: hidden;
}
.contact-deco {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  font-weight: 300;
  color: rgba(201,149,108,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.contact-wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.contact-left .section-tag { color: var(--rose-gold-light); }
.contact-left .section-tag::before { background: var(--rose-gold-light); }
.contact-left .section-title { color: var(--cream); }
.contact-left .section-title em { color: var(--rose-gold-light); }
.contact-desc {
  font-size: 0.75rem;
  line-height: 2.2;
  color: rgba(250,246,241,0.5);
  margin: 1.5rem 0 2.5rem;
}
.contact-info-item {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.contact-info-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,149,108,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-info-text {
  font-size: 0.7rem;
  line-height: 1.6;
  color: rgba(250,246,241,0.6);
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { position: relative; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(250,246,241,0.05);
  border: 1px solid rgba(201,149,108,0.2);
  color: var(--cream);
  padding: 1.1rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: none;
  cursor: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,246,241,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
  background: rgba(201,149,108,0.05);
}
.form-group select option { background: var(--chocolate); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-submit {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold), var(--rose-gold-light));
  background-size: 200%;
  border: none;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  cursor: none;
  transition: background-position 0.5s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 40px rgba(201,149,108,0.3);
}
.form-submit:hover {
  background-position: right;
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(201,149,108,0.4);
}

/* ──── FOOTER ──── */
footer {
  background: #1a0a05;
  padding: 4rem;
  text-align: center;
  position: relative;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.footer-sub {
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  color: rgba(201,149,108,0.4);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.footer-socials {
  display: flex; justify-content: center; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.social-link {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,149,108,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-gold);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.4s;
  cursor: none;
}
.social-link:hover {
  background: var(--rose-gold);
  color: white;
  border-color: var(--rose-gold);
  transform: translateY(-4px);
}
.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(201,149,108,0.25);
  text-transform: uppercase;
}
.footer-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
  margin: 2rem auto;
}

/* ──── FLOATING PETALS ──── */
.petal {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: petalFall linear infinite;
}
@keyframes petalFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ──── REVEAL ANIMATIONS ──── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ──── GLITTER EFFECT ──── */
.glitter-container {
  position: fixed; inset: 0; pointer-events: none; z-index: 9997;
}
.glitter-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--rose-gold-light);
  border-radius: 50%;
  pointer-events: none;
  animation: glitterFade 1s ease-out forwards;
}
@keyframes glitterFade {
  0% { transform: scale(1) translate(0, 0); opacity: 1; }
  100% { transform: scale(0) translate(var(--tx), var(--ty)); opacity: 0; }
}

/* ──── MOBILE NAV TOGGLE ──── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: none;
  background: none;
  border: none;
  position: relative;
  z-index: 2000;
  transition: transform 0.3s ease;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--chocolate);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

/* Toggle animation (X) */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ──── MOBILE NAV OVERLAY ──── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(250, 246, 241, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 1500;
    list-style: none;
    margin: 0;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    visibility: hidden;
  }

  .nav-links.nav-mobile-open {
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    display: flex !important;
  }

  .nav-links a {
    font-size: 1.75rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.1em;
    color: var(--chocolate);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  .nav-admin-link {
    width: 4rem;
    height: 4rem;
    border-width: 1.5px;
  }
  .nav-admin-link svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .nav-links.nav-mobile-open a {
    opacity: 1;
    transform: translateY(0);
  }

  /* Delay for each link in mobile menu */
  .nav-links.nav-mobile-open li:nth-child(1) a { transition-delay: 0.2s; }
  .nav-links.nav-mobile-open li:nth-child(2) a { transition-delay: 0.25s; }
  .nav-links.nav-mobile-open li:nth-child(3) a { transition-delay: 0.3s; }
  .nav-links.nav-mobile-open li:nth-child(4) a { transition-delay: 0.35s; }
  .nav-links.nav-mobile-open li:nth-child(5) a { transition-delay: 0.4s; }
  .nav-links.nav-mobile-open li:nth-child(6) a { transition-delay: 0.45s; }
  .nav-links.nav-mobile-open li:nth-child(7) a { transition-delay: 0.5s; }
  .nav-links.nav-mobile-open li:nth-child(8) a { transition-delay: 0.55s; }

  /* Mobile book CTA inside nav overlay */
  .nav-mobile-cta-item { margin-top: 1rem; }
  .nav-mobile-book {
    display: inline-block;
    padding: 0.9rem 2.5rem !important;
    border: 1px solid var(--rose-gold) !important;
    background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold), var(--rose-gold-light));
    background-size: 200%;
    color: white !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
}

/* Hide mobile CTA on desktop */
.nav-mobile-cta-item { display: none; }
@media (max-width: 900px) {
  .nav-mobile-cta-item { display: list-item; list-style: none; }
}

/* ──── GOLD DIVIDERS ──── */
.gold-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
  margin: 1.5rem auto;
}
.gold-divider-left {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--rose-gold), transparent);
  margin: 1.5rem 0;
}

/* ──── MAGNETIC BUTTON ──── */
a {
  cursor: pointer;
}

.magnetic { 
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1); 
  cursor: pointer;
}

/* ──── SUCCESS TOAST ──── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--chocolate);
  border: 1px solid var(--rose-gold);
  color: var(--cream);
  padding: 1.2rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ──── RESPONSIVE ──── */
@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  #about { padding-top: 4rem; padding-bottom: 6rem; }
  #services { padding: 5rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  #formations { padding: 5rem 2rem; }
  #process { padding: 5rem 2rem; }
  .process-timeline { flex-direction: column; gap: 2rem; }
  .process-timeline::before { display: none; }
  #testimonials { padding: 5rem 2rem; }
  .testi-card { padding: 0 1rem; }
  #entretien { padding: 5rem 2rem; }
  .entretien-grid { grid-template-columns: 1fr; }
  .tarif-card.featured { transform: none; }
  #contact { padding: 5rem 2rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  footer { padding: 3rem 2rem; }
}

/* ──── MOBILE (≤ 600px) ──── */
@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-script { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-desc { font-size: 0.7rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 1rem; }
  .hero-btns a { width: 100%; text-align: center; }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  #formations { padding: 4rem 1.5rem; }
  .testi-card { padding: 0; }
  .contact-wrap { gap: 2rem; }
  nav { padding: 1rem 1.2rem; }
}

/* ──── MOBILE PROCESS/CONSEILS ──── */
@media (max-width: 900px) {
  .process-step { text-align: left; padding: 0 0 0 3.5rem; }
  .step-circle {
    position: absolute; left: 0; top: 0;
    width: 3.5rem; height: 3.5rem;
    font-size: 1.2rem;
    margin: 0;
  }
  .process-step { position: relative; }
}

/* ──── MOBILE TESTI DOTS (touch targets) ──── */
@media (pointer: coarse) {
  .dot { width: 10px; height: 10px; padding: 0; }
  .dot.active { width: 28px; height: 10px; border-radius: 5px; }
  .testi-dots { gap: 0.8rem; }
}

/* ──── MOBILE CTA NAV ──── */
@media (max-width: 900px) {
  .nav-links.nav-mobile-open ~ .nav-cta,
  .nav-mobile-cta {
    display: block;
  }
}

/* ──── RESPONSIVE BOOK BTN ON CARDS ──── */
@media (max-width: 768px) {
  .fgb-book-btn {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 8px;
    padding: 0.55rem 1.2rem;
    font-size: 0.6rem;
    min-height: 36px;
    width: 100%;
  }
  .fgb-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ──── RESPONSIVE HERO LOGO MOBILE ──── */
@media (max-width: 600px) {
  .hero-logo-container {
    padding: 12px 16px !important;
  }
  .hero-logo-container img {
    max-width: 200px !important;
  }
  .hero-desc {
    font-size: 0.68rem;
    padding: 0 0.5rem;
  }
}

/* ──── RESPONSIVE FOOTER MOBILE ──── */
@media (max-width: 600px) {
  .footer-logo { font-size: 1.8rem; }
  .footer-sub { font-size: 0.5rem; letter-spacing: 0.3em; }
  .footer-socials { gap: 1rem; }
  .social-link { width: 44px; height: 44px; }
}

/* ──── RESPONSIVE MARQUEE MOBILE ──── */
@media (max-width: 600px) {
  .marquee-strip { padding: 0.8rem 0; }
  .marquee-item { font-size: 0.7rem; padding: 0 1rem; }
}

/* ──── RESPONSIVE TESTIMONIALS MOBILE ──── */
@media (max-width: 600px) {
  .testi-quote { font-size: 1.1rem; line-height: 1.5; }
  .testi-inner { padding: 0 0.5rem; }
}

/* ──── PETIT MOBILE (≤ 400px) ──── */
@media (max-width: 400px) {
  .hero-title { font-size: clamp(2.2rem, 13vw, 3.2rem); }
  .hero-script { font-size: clamp(1.6rem, 9vw, 2.5rem); }
  #about, #services, #formations, #process, #testimonials, #entretien, #contact {
    padding: 4rem 1.2rem;
  }
  footer { padding: 2.5rem 1.2rem; }
  .section-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .fgb-grid { grid-auto-rows: 320px; }
  .fgb-forfait-list { padding: 18px 14px; }
  .forfait-name { font-size: 0.95rem; }
  .forfait-price { font-size: 1rem; }
  .forfait-desc { font-size: 0.63rem; }
  .fgb-mariage-cards .fgb-card { min-height: 280px; }
  .fgb-book-btn { font-size: 0.55rem; padding: 0.5rem 0.8rem; }
}
