/* ============================================================
   STARLY.NC — Feuille de style partagée
   Système de design repris du premier jet (violet/cyan, dark)
   ============================================================ */

:root {
  --black:         #0A0A0F;
  --dark:          #0F0F1A;
  --dark-mid:      #16162A;
  --card:          #12121E;
  --border:        rgba(180,130,255,0.15);
  --purple:        #B060FF;
  --purple-bright: #C87FFF;
  --purple-glow:   rgba(176,96,255,0.3);
  --cyan:          #00E5FF;
  --cyan-soft:     rgba(0,229,255,0.15);
  --white:         #F0EEFF;
  --white-dim:     rgba(240,238,255,0.55);
  --white-faint:   rgba(240,238,255,0.08);
  --success:       #5FE3A1;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

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

.container { max-width:1240px; margin:0 auto; padding:0 60px; }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 60px;
  background: rgba(10,10,15,0.6);
  backdrop-filter: blur(12px);
  transition: padding 0.4s, background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  padding:12px 60px;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height:38px; width:auto; display:block; }
.nav-links { display:flex; align-items:center; gap:36px; list-style:none; }
.nav-links a {
  font-weight:300; font-size:0.75rem;
  letter-spacing:0.2em; text-transform:uppercase;
  color: rgba(240,238,255,0.8);
  text-decoration:none; position:relative; transition: color 0.3s;
  padding:4px 0;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:1px; background:linear-gradient(90deg,var(--purple),var(--cyan));
  transform:scaleX(0); transition:transform 0.3s;
}
.nav-links a:hover, .nav-links a.current { color:var(--white); }
.nav-links a:hover::after, .nav-links a.current::after { transform:scaleX(1); }
.nav-links .btn-primary { padding:10px 24px; font-size:0.72rem; }
.nav-burger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-burger span { width:22px; height:1px; background:var(--white); display:block; }

/* ── HERO (accueil) ── */
.hero { position: relative; width: 100%; height: 100vh; min-height:640px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video-bg video, .hero-video-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,10,15,0.35) 0%, rgba(10,10,15,0.8) 100%),
    linear-gradient(135deg, rgba(176,96,255,0.18) 0%, transparent 50%, rgba(0,229,255,0.1) 100%);
}
.hero::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:200px; z-index:2;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events:none;
}
.hero-content { position: relative; z-index: 3; text-align: center; padding: 0 24px; max-width: 900px; }
.hero-eyebrow {
  font-weight:300; font-size:0.72rem; letter-spacing:0.4em; text-transform:uppercase;
  color: var(--purple-bright); margin-bottom:28px;
  display:flex; align-items:center; justify-content:center; gap:16px;
  opacity:0; animation: fadeUp 1s 0.3s forwards;
}
.hero-eyebrow span { width:40px; height:1px; background:linear-gradient(90deg,transparent,var(--purple)); display:block; }
.hero-eyebrow span:last-child { background:linear-gradient(90deg,var(--cyan),transparent); }
.hero-eyebrow span.hero-eyebrow-text {
  width:auto; height:auto; display:inline-block; white-space:nowrap; flex-shrink:0;
  background:linear-gradient(135deg,var(--purple-bright),var(--cyan));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: 5.5rem; font-weight:300; line-height:1.05;
  margin-bottom:24px; letter-spacing:-0.01em;
  opacity:0; animation: fadeUp 1s 0.5s forwards;
}
.hero-title em {
  font-style:italic;
  background: linear-gradient(135deg, var(--purple-bright) 0%, #fff 50%, var(--cyan) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hero-desc {
  font-weight:300; font-size:1rem; line-height:1.8; color: rgba(240,238,255,0.7);
  max-width:560px; margin:0 auto 48px;
  opacity:0; animation: fadeUp 1s 0.7s forwards;
}
.hero-btns { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; opacity:0; animation: fadeUp 1s 0.9s forwards; }
.hero-scroll {
  position:absolute; bottom:40px; left:50%; transform:translateX(-50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  opacity:0; animation: fadeUp 1s 1.2s forwards;
}
.hero-scroll-label { font-size:0.62rem; letter-spacing:0.3em; text-transform:uppercase; color:rgba(240,238,255,0.3); font-weight:300; }
.hero-scroll-line { width:1px; height:40px; background:linear-gradient(180deg,rgba(176,96,255,0.6),transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity:0.4; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(1.2); } }

/* ── PAGE HERO (pages intérieures) ── */
.page-hero {
  position:relative; padding:170px 60px 90px; text-align:center;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(176,96,255,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(0,229,255,0.08) 0%, transparent 50%),
    var(--black);
  border-bottom:1px solid var(--border);
}
.breadcrumb { font-size:0.68rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--white-dim); margin-bottom:20px; }
.breadcrumb a { text-decoration:none; color:var(--white-dim); transition:color .3s; }
.breadcrumb a:hover { color:var(--purple-bright); }
.breadcrumb span { color:var(--purple-bright); }
.page-hero h1 { font-family:'Cormorant Garamond', serif; font-size:3.6rem; font-weight:300; margin-bottom:16px; }
.page-hero h1 em {
  font-style:italic;
  background:linear-gradient(135deg,var(--purple-bright),var(--cyan));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.page-hero p { font-weight:300; font-size:0.95rem; color:var(--white-dim); max-width:560px; margin:0 auto; line-height:1.8; }

/* buttons */
.btn-primary {
  background: var(--purple); color:var(--white); padding:16px 42px; font-weight:400;
  font-size:0.75rem; letter-spacing:0.2em; text-transform:uppercase;
  text-decoration:none; display:inline-block; transition: all 0.3s; position:relative; overflow:hidden; border:none; cursor:pointer;
}
.btn-primary::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,var(--purple),var(--cyan)); opacity:0; transition:opacity 0.3s; }
.btn-primary:hover { box-shadow:0 0 40px var(--purple-glow); }
.btn-primary:hover::before { opacity:1; }
.btn-primary span { position:relative; z-index:1; }
.btn-outline {
  border:1px solid rgba(240,238,255,0.3); color:rgba(240,238,255,0.8);
  padding:16px 42px; font-weight:300; font-size:0.75rem; letter-spacing:0.2em; text-transform:uppercase;
  text-decoration:none; display:inline-block; transition: all 0.3s;
  backdrop-filter:blur(8px); background:rgba(240,238,255,0.05);
}
.btn-outline:hover { border-color:var(--purple); color:var(--white); }
.btn-small { padding:11px 26px; font-size:0.68rem; }

/* ── DUO BANNER ── */
.duo-banner {
  background:linear-gradient(90deg,var(--dark-mid),rgba(176,96,255,0.08),var(--dark-mid));
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:18px 60px; display:flex; align-items:center; justify-content:center; gap:14px; text-align:center;
}
.duo-banner-text { font-size:0.88rem; font-weight:300; color:var(--white-dim); letter-spacing:0.04em; }
.duo-banner-text strong { color:var(--purple-bright); font-weight:500; }
.duo-dot { width:4px; height:4px; border-radius:50%; background:var(--purple); opacity:0.5; flex-shrink:0; }

/* ── SECTION COMMONS ── */
.section-label {
  font-size:0.68rem; letter-spacing:0.35em; text-transform:uppercase; color:var(--purple-bright);
  font-weight:400; margin-bottom:14px; display:flex; align-items:center; gap:14px;
}
.section-label::before { content:''; width:28px; height:1px; background:linear-gradient(90deg,var(--purple),var(--cyan)); }
.section-title { font-family:'Cormorant Garamond', serif; font-size:2.9rem; font-weight:300; line-height:1.15; margin-bottom:18px; }
.section-title em {
  font-style:italic; background:linear-gradient(135deg,var(--purple-bright),var(--cyan));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.section-body { font-weight:300; font-size:0.93rem; line-height:1.9; color:var(--white-dim); max-width:560px; }

/* ── SERVICES ── */
#services, .services-section { padding:100px 60px; background:var(--black); position:relative; }
.services-header { text-align:center; margin-bottom:72px; }
.services-header .section-label { justify-content:center; }
.services-header .section-label::before { display:none; }
.services-header .section-body { margin:0 auto; text-align:center; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); }
.service-card { background:var(--card); padding:44px 36px; position:relative; overflow:hidden; transition:background 0.4s; text-decoration:none; display:block; color:inherit; }
.service-card::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(176,96,255,0.07),rgba(0,229,255,0.04)); opacity:0; transition:opacity 0.4s; }
.service-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:linear-gradient(90deg,var(--purple),var(--cyan)); transform:scaleX(0); transition:transform 0.4s; transform-origin:left; }
.service-card:hover { background:var(--dark-mid); }
.service-card:hover::before { opacity:1; }
.service-card:hover::after { transform:scaleX(1); }
.service-num { font-family:'Cormorant Garamond', serif; font-size:4.5rem; font-weight:300; color:rgba(176,96,255,0.07); position:absolute; top:16px; right:20px; line-height:1; pointer-events:none; }
.service-icon { font-size:1.6rem; margin-bottom:20px; display:block; }
.service-name { font-family:'Cormorant Garamond', serif; font-size:1.45rem; font-weight:400; color:var(--white); margin-bottom:10px; }
.service-desc { font-size:0.8rem; font-weight:300; color:var(--white-dim); line-height:1.75; margin-bottom:22px; }
.service-price { font-size:0.78rem; font-weight:400; background:linear-gradient(90deg,var(--purple-bright),var(--cyan)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.service-link { font-size:0.68rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--purple-bright); margin-top:14px; display:inline-block; }

/* ── PRESTATIONS DÉTAIL (page prestations) ── */
.prestation-detail { padding:90px 60px; border-bottom:1px solid var(--border); }
.prestation-detail:nth-child(even) { background:var(--black); }
.prestation-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.prestation-detail-grid.reverse .prestation-detail-media { order:2; }
.prestation-detail-media { aspect-ratio:4/3; border:1px solid var(--border); overflow:hidden; position:relative; background:var(--card); display:flex; align-items:center; justify-content:center; }
.prestation-detail-media img { width:100%; height:100%; object-fit:cover; }
.prestation-detail-media .placeholder-icon { font-size:3.5rem; opacity:.5; }
.prestation-list { list-style:none; margin:26px 0 32px; }
.prestation-list li { font-size:0.86rem; font-weight:300; color:var(--white-dim); padding:9px 0; border-bottom:1px solid rgba(180,130,255,0.08); display:flex; justify-content:space-between; gap:16px; }
.prestation-list li strong { color:var(--white); font-weight:400; }

/* ── TARIFS ── */
#tarifs, .tarifs-section { padding:100px 60px; background:var(--dark); }
.tarifs-layout { display:grid; grid-template-columns:280px 1fr; gap:70px; align-items:start; }
.tarifs-sidebar { position:sticky; top:110px; }
.tarif-nav { display:flex; flex-direction:column; gap:2px; margin-top:36px; max-height:60vh; overflow-y:auto; }
.tarif-tab {
  padding:12px 16px; font-size:0.7rem; letter-spacing:0.14em; text-transform:uppercase;
  font-weight:400; color:var(--white-dim); cursor:pointer; background:none; border:none;
  text-align:left; border-left:2px solid transparent; transition:all 0.25s;
}
.tarif-tab:hover { color:var(--white); padding-left:24px; }
.tarif-tab.active { color:var(--purple-bright); border-left:2px solid var(--purple); padding-left:24px; background:rgba(176,96,255,0.07); }
.tarifs-content { min-height:400px; }
.tarif-panel { display:none; }
.tarif-panel.active { display:block; }
.tarif-panel-title { font-family:'Cormorant Garamond', serif; font-size:2.2rem; font-weight:300; margin-bottom:6px; }
.tarif-panel-sub {
  font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase;
  background:linear-gradient(90deg,var(--purple-bright),var(--cyan));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom:40px; font-weight:300;
}
.tarif-group { margin-bottom:32px; }
.tarif-group-label { font-family:'Dancing Script', cursive; font-size:1.25rem; color:var(--white-dim); margin-bottom:10px; padding-bottom:8px; border-bottom:1px solid var(--border); }
.tarif-line { display:flex; justify-content:space-between; align-items:baseline; padding:12px 0; border-bottom:1px solid rgba(180,130,255,0.08); transition:padding-left 0.2s; }
.tarif-line:hover { padding-left:6px; }
.tarif-line:last-child { border-bottom:none; }
.tarif-line-left { flex:1; }
.tarif-line-name { font-size:0.84rem; font-weight:400; letter-spacing:0.05em; text-transform:uppercase; color:var(--white); }
.tarif-line-duration { font-family:'Cormorant Garamond', serif; font-style:italic; font-size:0.8rem; color:var(--white-dim); margin-left:8px; }
.tarif-line-desc { font-size:0.76rem; color:var(--white-dim); font-weight:300; margin-top:3px; line-height:1.5; }
.tarif-line-price { font-family:'Cormorant Garamond', serif; font-size:1.08rem; font-weight:600; color:var(--white); white-space:nowrap; margin-left:24px; }
.tarif-line-price.free { background:linear-gradient(135deg,var(--purple-bright),var(--cyan)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; font-style:italic; }
.tarif-note { margin-top:26px; padding:16px 20px; background:rgba(176,96,255,0.06); border-left:2px solid var(--purple); font-size:0.78rem; font-style:italic; color:var(--white-dim); line-height:1.6; }
.tarifs-cta { text-align:center; margin-top:64px; padding-top:56px; border-top:1px solid var(--border); }

/* ── GALERIE ── */
.gallery-section { padding:90px 60px; }
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.gallery-item { aspect-ratio:1; border:1px solid var(--border); overflow:hidden; position:relative; background:var(--card); display:flex; align-items:center; justify-content:center; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item .placeholder-icon { font-size:2rem; opacity:.4; }
.gallery-note { text-align:center; margin-top:44px; font-size:0.82rem; color:var(--white-dim); font-weight:300; }

/* ── ABOUT ── */
#about, .about-section { padding:100px 60px; background:var(--black); position:relative; overflow:hidden; }
.about-grid { display:grid; grid-template-columns:minmax(280px,460px) 1fr; gap:90px; align-items:center; }
.about-photo { position:relative; }
.about-photo-inner { width:100%; max-width:460px; aspect-ratio:4/5; overflow:hidden; border:1px solid var(--border); position:relative; }
.about-photo-inner img { width:100%; height:100%; object-fit:cover; display:block; }
.about-photo-inner::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(176,96,255,0.2) 0%,transparent 50%,rgba(0,229,255,0.1) 100%); pointer-events:none; }
.about-photo::before { content:''; position:absolute; bottom:-16px; right:-16px; width:110px; height:110px; border-right:1px solid var(--purple); border-bottom:1px solid var(--cyan); z-index:0; pointer-events:none; }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-top:40px; }
.about-feature-icon { font-size:1.2rem; margin-bottom:8px; display:block; }
.about-feature-name { font-size:0.68rem; letter-spacing:0.2em; text-transform:uppercase; background:linear-gradient(90deg,var(--purple-bright),var(--cyan)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:6px; font-weight:400; }
.about-feature-text { font-size:0.8rem; font-weight:300; color:var(--white-dim); line-height:1.65; }

.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; margin-top:60px; }
.team-card { text-align:center; }
.team-photo { aspect-ratio:1; border-radius:50%; overflow:hidden; border:1px solid var(--border); margin:0 auto 18px; max-width:180px; background:var(--card); display:flex; align-items:center; justify-content:center; }
.team-photo .placeholder-icon { font-size:2rem; opacity:.4; }
.team-name { font-family:'Cormorant Garamond', serif; font-size:1.3rem; margin-bottom:4px; }
.team-role { font-size:0.68rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--purple-bright); }

/* ── VALEURS / ENGAGEMENTS ── */
.values-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); margin-top:60px; }
.value-card { background:var(--card); padding:36px 28px; text-align:center; }
.value-icon { font-size:1.6rem; margin-bottom:16px; display:block; }
.value-title { font-family:'Cormorant Garamond', serif; font-size:1.2rem; margin-bottom:8px; }
.value-text { font-size:0.78rem; color:var(--white-dim); font-weight:300; line-height:1.6; }

/* ── CONTACT ── */
#contact, .contact-section { padding:100px 60px; background:var(--dark); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:start; }
.contact-item { display:flex; gap:18px; margin-bottom:30px; align-items:flex-start; }
.contact-item-icon { width:42px; height:42px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:0.95rem; flex-shrink:0; background:var(--white-faint); color:var(--purple-bright); }
.contact-item-label { font-size:0.65rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--white-dim); font-weight:400; margin-bottom:4px; }
.contact-item-value { font-family:'Cormorant Garamond', serif; font-size:1.05rem; color:var(--white); }
.contact-item-value a { color:var(--white); text-decoration:none; transition:color 0.3s; }
.contact-item-value a:hover { color:var(--purple-bright); }

/* social icons — shared between the contact section and the footer */
.social-icon-link {
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border); background:var(--white-faint); color:var(--white-dim);
  text-decoration:none; transition:all 0.3s;
}
.social-icon-link svg { width:18px; height:18px; }
.social-icon-link:hover { border-color:var(--purple); color:var(--purple-bright); box-shadow:0 0 16px var(--purple-glow); }
.social-icons { display:flex; gap:12px; margin-top:4px; }
.social-icons .social-icon-link { width:40px; height:40px; }
.contact-map { margin-top:36px; border:1px solid var(--border); aspect-ratio:16/9; overflow:hidden; }
.contact-map iframe { width:100%; height:100%; border:0; filter:grayscale(0.3) invert(0.92) contrast(0.85); }
.form-group { margin-bottom:22px; }
.form-label { display:block; font-size:0.65rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--white-dim); margin-bottom:8px; font-weight:400; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:13px 0; background:none; border:none; border-bottom:1px solid rgba(180,130,255,0.2);
  font-family:'Outfit', sans-serif; font-size:0.88rem; font-weight:300; color:var(--white); outline:none; transition:border-color 0.3s; appearance:none;
}
.form-input::placeholder, .form-textarea::placeholder { color:rgba(240,238,255,0.18); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--purple); }
.form-select option { background:var(--dark-mid); }
.form-textarea { resize:none; min-height:96px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.form-submit {
  margin-top:8px; width:100%; background:var(--purple); color:var(--white); padding:16px 48px;
  font-family:'Outfit', sans-serif; font-weight:400; font-size:0.75rem; letter-spacing:0.18em; text-transform:uppercase;
  border:none; cursor:pointer; transition:all 0.3s; position:relative; overflow:hidden;
}
.form-submit::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,var(--purple),var(--cyan)); opacity:0; transition:opacity 0.3s; }
.form-submit:hover { box-shadow:0 0 32px var(--purple-glow); }
.form-submit:hover::before { opacity:1; }
.form-submit span { position:relative; z-index:1; }
.form-consent { font-size:0.72rem; color:var(--white-dim); font-weight:300; display:flex; gap:10px; align-items:flex-start; margin-top:18px; line-height:1.6; }
.form-consent a { color:var(--purple-bright); }
.form-note-wp { margin-top:18px; font-size:0.72rem; color:var(--white-dim); font-style:italic; }

/* ── FAQ ── */
.faq-section { padding:90px 60px; background:var(--black); }
.faq-list { max-width:760px; margin:56px auto 0; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { padding:22px 0; font-family:'Cormorant Garamond', serif; font-size:1.2rem; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:20px; }
.faq-q::after { content:'+'; font-size:1.4rem; color:var(--purple-bright); transition:transform .3s; flex-shrink:0; }
.faq-item.open .faq-q::after { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; font-size:0.86rem; color:var(--white-dim); font-weight:300; line-height:1.75; }
.faq-item.open .faq-a { max-height:300px; padding-bottom:22px; }

/* ── QUICK NAV (page prestations) ── */
.quicknav { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; padding:0 60px 80px; max-width:1000px; margin:0 auto; }
.quicknav a {
  font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; font-weight:400;
  color:var(--white-dim); border:1px solid var(--border); padding:9px 18px;
  text-decoration:none; transition:all 0.3s; background:var(--white-faint);
}
.quicknav a:hover { color:var(--white); border-color:var(--purple); box-shadow:0 0 16px var(--purple-glow); }

/* ── LEGAL / TEXT PAGES ── */
.legal-section { padding:70px 60px 120px; max-width:840px; margin:0 auto; }
.legal-updated { font-size:0.75rem; color:var(--white-dim); font-style:italic; margin-bottom:50px; }
.legal-section h2 {
  font-family:'Cormorant Garamond', serif; font-size:1.7rem; font-weight:400; margin:48px 0 16px;
  color:var(--white); padding-bottom:10px; border-bottom:1px solid var(--border);
}
.legal-section h2:first-of-type { margin-top:0; }
.legal-section h3 { font-size:0.95rem; font-weight:500; margin:22px 0 8px; color:var(--purple-bright); text-transform:uppercase; letter-spacing:0.05em; }
.legal-section p, .legal-section li { font-size:0.88rem; font-weight:300; line-height:1.9; color:var(--white-dim); margin-bottom:14px; }
.legal-section ul { padding-left:22px; margin-bottom:16px; }
.legal-section strong { color:var(--white); font-weight:500; }
.legal-section a { color:var(--purple-bright); text-decoration:underline; text-underline-offset:3px; }
.fill-in {
  background:rgba(0,229,255,0.1); color:var(--cyan);
  border:1px dashed rgba(0,229,255,0.5); border-radius:3px;
  padding:1px 8px; font-weight:500; font-style:normal; white-space:nowrap;
}
.legal-intro-note {
  background:rgba(176,96,255,0.08); border:1px solid var(--border); border-left:2px solid var(--purple);
  padding:20px 24px; margin-bottom:40px; font-size:0.82rem; color:var(--white-dim); line-height:1.7;
}
.legal-intro-note strong { color:var(--purple-bright); }
.legal-table { width:100%; border-collapse:collapse; margin:18px 0 24px; }
.legal-table th, .legal-table td { text-align:left; padding:10px 14px; border:1px solid var(--border); font-size:0.82rem; font-weight:300; color:var(--white-dim); }
.legal-table th { color:var(--white); font-weight:400; background:var(--card); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position:fixed; left:24px; right:24px; bottom:24px; z-index:1000; max-width:640px; margin:0 auto;
  background:var(--card); border:1px solid var(--border); box-shadow:0 20px 60px rgba(0,0,0,0.5);
  padding:26px 30px; display:none;
}
#cookie-banner.visible { display:block; animation: fadeUp .5s forwards; }
#cookie-banner p { font-size:0.8rem; font-weight:300; color:var(--white-dim); line-height:1.7; margin-bottom:18px; }
#cookie-banner a { color:var(--purple-bright); text-decoration:underline; }
.cookie-actions { display:flex; gap:12px; flex-wrap:wrap; }
.cookie-actions button {
  font-size:0.68rem; letter-spacing:0.14em; text-transform:uppercase; padding:11px 20px; cursor:pointer; border:none; transition:all .3s;
}
#cookie-accept { background:var(--purple); color:var(--white); }
#cookie-accept:hover { background:var(--purple-bright); }
#cookie-refuse { background:none; color:var(--white-dim); border:1px solid var(--border) !important; }
#cookie-refuse:hover { color:var(--white); border-color:var(--purple) !important; }
#cookie-settings { background:none; color:var(--white-dim); text-decoration:underline; padding:11px 4px !important; }
.cookie-detail { display:none; margin-top:18px; padding-top:18px; border-top:1px solid var(--border); }
.cookie-detail.open { display:block; }
.cookie-detail-row { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:10px 0; font-size:0.78rem; color:var(--white-dim); }
.cookie-detail-row strong { color:var(--white); font-weight:400; display:block; }
.switch { position:relative; width:38px; height:20px; flex-shrink:0; }
.switch input { opacity:0; width:0; height:0; }
.switch .slider { position:absolute; inset:0; background:rgba(240,238,255,0.15); cursor:pointer; transition:.3s; }
.switch .slider::before { content:''; position:absolute; height:14px; width:14px; left:3px; top:3px; background:var(--white); transition:.3s; }
.switch input:checked + .slider { background:var(--purple); }
.switch input:checked + .slider::before { transform:translateX(18px); }
.switch input:disabled + .slider { background:var(--purple); opacity:.5; cursor:not-allowed; }
#cookie-float-btn {
  position:fixed; bottom:24px; left:24px; z-index:900; width:44px; height:44px; border-radius:50%;
  background:var(--card); border:1px solid var(--border); color:var(--purple-bright); font-size:1.1rem;
  display:none; align-items:center; justify-content:center; cursor:pointer;
}
#cookie-float-btn.visible { display:flex; }

/* ── FOOTER ── */
footer { background:var(--black); border-top:1px solid var(--border); padding:60px; display:grid; grid-template-columns:1.2fr 1fr 1fr 1fr; gap:50px; align-items:start; }
.footer-logo img { height:40px; width:auto; display:block; margin-bottom:14px; }
.footer-tagline { font-size:0.78rem; font-weight:300; color:var(--white-dim); margin-bottom:18px; }
.footer-badges { display:flex; gap:10px; }
.footer-badges a { width:32px; height:32px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; text-decoration:none; font-size:0.72rem; color:var(--white-dim); transition:.3s; }
.footer-badges a:hover { border-color:var(--purple); color:var(--purple-bright); }
.footer-col-title {
  font-size:0.65rem; letter-spacing:0.3em; text-transform:uppercase;
  background:linear-gradient(90deg,var(--purple-bright),var(--cyan));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom:18px; font-weight:400;
}
.footer-links { list-style:none; }
.footer-links li { margin-bottom:10px; }
.footer-links a { font-size:0.82rem; font-weight:300; color:var(--white-dim); text-decoration:none; transition:color 0.3s; }
.footer-links a:hover { color:var(--purple-bright); }
.footer-bottom { background:var(--black); border-top:1px solid var(--border); padding:22px 60px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:0.7rem; font-weight:300; color:rgba(240,238,255,0.35); }
.footer-legal-links { display:flex; gap:20px; flex-wrap:wrap; }
.footer-legal-links a { font-size:0.7rem; color:rgba(240,238,255,0.35); text-decoration:none; }
.footer-legal-links a:hover { color:var(--purple-bright); }
.footer-social { display:flex; gap:12px; }
.footer-social .social-icon-link { width:34px; height:34px; }
.footer-social .social-icon-link svg { width:16px; height:16px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.reveal { opacity:0; transform:translateY(22px); transition:opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:0.15s; }
.reveal-delay-2 { transition-delay:0.3s; }

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  .container, nav, .page-hero, #services, .services-section, #tarifs, .tarifs-section,
  #about, .about-section, #contact, .contact-section, .gallery-section, .prestation-detail,
  .faq-section, .legal-section, .quicknav, footer, .footer-bottom { padding-left:24px; padding-right:24px; }
  nav { padding-top:16px; padding-bottom:16px; }
  nav.scrolled { padding-top:10px; padding-bottom:10px; }
  .nav-links { position:fixed; top:0; right:0; bottom:0; width:78%; max-width:320px; background:var(--black);
    flex-direction:column; align-items:flex-start; justify-content:center; gap:30px; padding:40px;
    transform:translateX(100%); transition:transform .35s; border-left:1px solid var(--border); }
  .nav-links.open { transform:translateX(0); }
  .nav-burger { display:flex; }
  .hero-title { font-size:2.8rem; }
  .page-hero { padding-top:130px; }
  .page-hero h1 { font-size:2.4rem; }
  .services-grid { grid-template-columns:1fr; }
  .tarifs-layout { grid-template-columns:1fr; gap:36px; }
  .tarifs-sidebar { position:static; }
  .tarif-nav { flex-direction:row; flex-wrap:wrap; gap:6px; max-height:none; }
  .tarif-tab { border-left:none; border-bottom:2px solid transparent; padding:8px 14px; font-size:0.64rem; }
  .tarif-tab.active { border-left:none; border-bottom:2px solid var(--purple); padding-left:14px; }
  .about-grid, .prestation-detail-grid, .contact-grid { grid-template-columns:1fr; gap:44px; }
  .prestation-detail-grid.reverse .prestation-detail-media { order:0; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .values-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .form-row { grid-template-columns:1fr; }
  footer { grid-template-columns:1fr 1fr; gap:36px; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .duo-banner { text-align:center; }
}
@media (max-width:520px) {
  .team-grid, .values-grid, .gallery-grid { grid-template-columns:1fr 1fr; }
  footer { grid-template-columns:1fr; }
}

/* === Correctifs hero + menu mobile (07/09/2026) === */

/* 1. Hero non responsive : le texte "INSTITUT DE BEAUTÉ..." était en nowrap et
   forçait .hero-content (flex-item) à déborder de l'écran sur mobile,
   coupant le titre et les boutons. */
@media (max-width: 900px) {
  .hero-content { width: 100%; min-width: 0; }
  .hero-eyebrow { flex-wrap: wrap; row-gap: 8px; }
  .hero-eyebrow span.hero-eyebrow-text { white-space: normal; }
}

/* 2. Menu mobile superposé sur l'accueil : le backdrop-filter du <nav> crée
   un containing block pour .nav-links (position:fixed), donc bottom:0 se
   calait sur la hauteur de la nav (~80px) au lieu du viewport entier. */
@media (max-width: 900px) {
  .nav-links { height: 100vh; height: 100dvh; }
}

/* 3. Complément correctif hero : le texte de l'eyebrow gardait flex-shrink:0
   (règle d'origine plus haut dans ce fichier), donc même en white-space:normal
   il refusait de rétrécir sous sa largeur naturelle et débordait toujours. */
@media (max-width: 900px) {
  .hero-eyebrow span.hero-eyebrow-text { flex-shrink: 1; min-width: 0; max-width: 100%; }
}