/* BLGen — styles partagés (pages services) */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --ink:      #1a1c20;
  --ink2:     #2e3035;
  --mid:      #6b6f78;
  --silver:   #a8acb5;
  --light:    #e8eaee;
  --smoke:    #f3f4f6;
  --white:    #ffffff;
  --accent:   #3d4148;
  --gold:     #b8a98a;
  --cream:    #faf8f5;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Jost', system-ui, sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light);
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.06); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.nav-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-brand span {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--mid);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 0.2rem;
  letter-spacing: 0.15em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--ink2) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light);
  padding: 1.5rem 6%;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 99;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light);
  transition: color 0.2s;
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
  color: var(--ink);
  font-weight: 500;
}

.nav-mobile-menu a:hover { color: var(--ink); }

/* ── BOUTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(184, 169, 138, 0.35);
  border-radius: 0.2rem;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  background: var(--ink2);
}

.btn-skip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  color: var(--mid);
  padding: 0.5rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(184, 169, 138, 0.4);
  border-radius: 2rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-skip:hover {
  color: var(--ink);
  border-color: var(--gold);
  background: rgba(255,255,255,0.6);
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-intro {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 560px;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 4rem 8% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-brand-name span {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.72rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ── PAGE SERVICE (structure) ── */
.page-service {
  padding-top: 70px;
}

.service-hero {
  background: linear-gradient(145deg, var(--cream) 0%, #f5f2ec 40%, var(--smoke) 100%);
  padding: 5rem 8% 4rem;
  border-bottom: 1px solid var(--light);
}

.service-hero-cta {
  margin-top: 2rem;
}

.service-content {
  padding: 4rem 8% 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-placeholder {
  background: var(--smoke);
  border: 1px dashed rgba(184, 169, 138, 0.5);
  border-radius: 0.4rem;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 300;
}

.service-placeholder strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-burger { display: flex !important; }
  .nav-actions { margin-left: 0; padding-left: 0.5rem; }
  .footer-top { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .service-hero { padding: 4rem 6% 3rem; }
  .service-content { padding: 3rem 6% 4rem; }
}

/* ── Language switch (shared) ── */
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 15px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6f78;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.language-switch a {
  cursor: pointer;
  transition: 0.2s ease;
  color: #6b6f78;
  text-decoration: none;
}

.language-switch a:hover {
  color: #1a1c20;
}

.language-switch a.is-active,
.language-switch a[aria-current="true"] {
  color: #1a1c20;
  font-weight: 600;
}

.language-switch span[aria-hidden="true"] {
  opacity: 0.35;
  user-select: none;
}

/* Legal page nav with language switch */
.legal-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-nav .language-switch {
  margin-left: auto;
}

@media (max-width: 768px) {
  .legal-nav {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .legal-nav .language-switch {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

/* Video intro language switch */
.video-intro-lang {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 40;
}
