/* ============================================================
   MEILLEUR GUIDE FR — Design System
   Dark editorial dossier aesthetic with muted gold accents
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #0C0E11;
  color: #F4EFE6;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #C6A15B; text-decoration: none; transition: color 0.2s ease; }
a:hover, a:focus { color: #E3C98C; }
a:focus-visible { outline: 2px solid #C6A15B; outline-offset: 2px; }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, "Times New Roman", Times, "Noto Serif", serif;
  font-weight: 400;
  line-height: 1.25;
  color: #F4EFE6;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.small-meta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #B8B0A2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- LAYOUT CONTAINERS --- */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Thin gold horizontal rule */
.gold-rule {
  border: none;
  height: 1px;
  background: rgba(198, 161, 91, 0.27);
  margin: 2rem 0;
}

/* --- RESPONSIBLE-USE TOP NOTICE --- */
.top-notice {
  background: #15181D;
  border-bottom: 1px solid rgba(198, 161, 91, 0.12);
  padding: 0.6rem 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: #B8B0A2;
}

.top-notice__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.top-notice__icon {
  flex-shrink: 0;
  color: #C6A15B;
}

/* --- HEADER / NAV --- */
.site-header {
  background: #0C0E11;
  border-bottom: 1px solid rgba(198, 161, 91, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.site-header__logo {
  width: 200px;
  height: 100px;
}


/* Desktop nav */
.site-nav { display: flex; align-items: center; }

.site-nav__list {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.site-nav__item { position: relative; }

.site-nav__link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: #B8B0A2;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link:focus,
.site-nav__link--active {
  color: #F4EFE6;
}

.site-nav__link--active::after {
  content: '';
  display: block;
  height: 1px;
  background: #C6A15B;
  margin-top: 2px;
  width: 100%;
}

/* Mobile burger */
.burger-btn {
  display: none;
  background: none;
  border: 1px solid rgba(198, 161, 91, 0.27);
  border-radius: 6px;
  padding: 0.5rem;
  cursor: pointer;
  color: #F4EFE6;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.burger-btn:hover { border-color: #C6A15B; }
.burger-btn__icon { display: block; }

/* Mobile drawer overlay */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-overlay--open { opacity: 1; }

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 82vw;
  height: 100vh;
  height: 100dvh;
  background: #15181D;
  border-right: 1px solid rgba(198, 161, 91, 0.2);
  z-index: 210;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.drawer--open { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(198, 161, 91, 0.12);
}

.drawer__brand {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 0.95rem;
  color: #F4EFE6;
}

.drawer__close {
  background: none;
  border: none;
  color: #B8B0A2;
  cursor: pointer;
  padding: 0.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.drawer__close:hover {
  color: #F4EFE6;
  background: rgba(198, 161, 91, 0.1);
}

.drawer__nav { padding: 1rem 0; flex: 1; }

.drawer__link {
  display: block;
  padding: 0.85rem 1.25rem;
  color: #B8B0A2;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.drawer__link:hover,
.drawer__link--active {
  color: #F4EFE6;
  border-left-color: #C6A15B;
  background: rgba(198, 161, 91, 0.05);
}

.drawer__footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(198, 161, 91, 0.12);
  font-size: 0.72rem;
  color: #5a5f6b;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
  line-height: 1.3;
  border: 1px solid transparent;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: #C6A15B;
  color: #0C0E11;
  border-color: #C6A15B;
}

.btn-primary:hover, .btn-primary:focus {
  background: #d4b06a;
  border-color: #d4b06a;
  color: #0C0E11;
}

.btn-secondary {
  background: transparent;
  color: #F4EFE6;
  border-color: rgba(198, 161, 91, 0.4);
}

.btn-secondary:hover, .btn-secondary:focus {
  border-color: #C6A15B;
  color: #F4EFE6;
  background: rgba(198, 161, 91, 0.08);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  border-radius: 8px;
}

/* --- HERO SECTION --- */
.hero {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(198, 161, 91, 0.12);
}

.hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C6A15B;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(198, 161, 91, 0.2);
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #B8B0A2;
  line-height: 1.6;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto;
}

/* --- SECTION COMMON --- */
.section {
  padding: 3rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-intro {
  text-align: center;
  color: #B8B0A2;
  font-size: 0.95rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.section-rule {
  border: none;
  height: 1px;
  background: rgba(198, 161, 91, 0.12);
  margin: 0;
}

/* --- THREE-CARD DIRECTORY --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-dossier {
  background: #1B1F25;
  border: 1px solid rgba(198, 161, 91, 0.12);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.card-dossier:hover {
  border-color: rgba(198, 161, 91, 0.3);
  transform: translateY(-2px);
}

.card-dossier__index {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C6A15B;
  margin-bottom: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.card-dossier__mark {
  width: 100%;
  height: 100px;
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid rgba(198, 161, 91, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
}

.card-dossier__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 140px;
}

.card-dossier__name {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.2rem;
  color: #F4EFE6;
  margin-bottom: 0.6rem;
}

.card-dossier__summary {
  font-size: 0.85rem;
  color: #B8B0A2;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.card-dossier__meta {
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid rgba(198, 161, 91, 0.12);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}

.card-dossier__meta-item {
  font-size: 0.78rem;
  color: #B8B0A2;
  padding: 0.25rem 0;
}

.card-dossier__meta-item strong {
  color: #F4EFE6;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  white-space: nowrap;
  margin-right: 0.25rem;
}

.card-dossier__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.card-dossier__tag {
  font-size: 0.68rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: rgba(198, 161, 91, 0.08);
  border: 1px solid rgba(198, 161, 91, 0.12);
  color: #B8B0A2;
}

.card-dossier__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.card-dossier__disclaimer {
  font-size: 0.68rem;
  color: #6a6f7a;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  font-style: italic;
}

/* --- ADVANTAGES / PRINCIPLES --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.advantage-card {
  background: #15181D;
  border: 1px solid rgba(198, 161, 91, 0.08);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.advantage-card__icon {
  color: #C6A15B;
  margin-bottom: 0.75rem;
  display: inline-flex;
}

.advantage-card__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1rem;
  color: #F4EFE6;
  margin-bottom: 0.5rem;
}

.advantage-card__text {
  font-size: 0.82rem;
  color: #B8B0A2;
  line-height: 1.5;
}

/* --- THREE-STEP SECTION --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: #15181D;
  border: 1px solid rgba(198, 161, 91, 0.08);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.step-card__number {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 2rem;
  color: rgba(198, 161, 91, 0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step-card__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1rem;
  color: #F4EFE6;
  margin-bottom: 0.5rem;
}

.step-card__text {
  font-size: 0.82rem;
  color: #B8B0A2;
  line-height: 1.5;
}

/* --- RESPONSIBLE-USE SECTION --- */
.responsible-section {
  background: #15181D;
  border-top: 1px solid rgba(198, 161, 91, 0.12);
  border-bottom: 1px solid rgba(198, 161, 91, 0.12);
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.responsible-item {
  background: #1B1F25;
  border: 1px solid rgba(198, 161, 91, 0.08);
  border-radius: 10px;
  padding: 1.25rem;
}

.responsible-item__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 0.9rem;
  color: #F4EFE6;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.responsible-item__text {
  font-size: 0.82rem;
  color: #B8B0A2;
  line-height: 1.5;
}

.responsible-item__icon { color: #C6A15B; flex-shrink: 0; }

/* --- FOOTER --- */
.site-footer {
  background: #0C0E11;
  border-top: 1px solid rgba(198, 161, 91, 0.12);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.footer-block__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 0.85rem;
  color: #F4EFE6;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(198, 161, 91, 0.15);
}

.footer-block__text {
  font-size: 0.78rem;
  color: #8a8f99;
  line-height: 1.55;
}

.footer-block__text a { color: #C6A15B; }
.footer-block__text a:hover { color: #E3C98C; }

.footer-acceptance {
  background: #15181D;
  border-top: 1px solid rgba(198, 161, 91, 0.08);
  border-bottom: 1px solid rgba(198, 161, 91, 0.08);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: #8a8f99;
  line-height: 1.5;
}

.footer-acceptance a { color: #C6A15B; }

.footer-legal-nav {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(198, 161, 91, 0.08);
}

.footer-legal-nav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0;
}

.footer-legal-nav__link {
  display: block;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  color: #B8B0A2;
  border-right: 1px solid rgba(198, 161, 91, 0.12);
  transition: color 0.2s;
}

.footer-legal-nav__item:last-child .footer-legal-nav__link { border-right: none; }
.footer-legal-nav__link:hover { color: #F4EFE6; }

.footer-resources {
  padding: 2rem 0;
  text-align: center;
}

.footer-resources__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6a6f7a;
  margin-bottom: 1rem;
}

.footer-resources__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.footer-resources__logo {
  width: auto;
  height: 36px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-resources__logo:hover { opacity: 1; }

.footer-copyright {
  text-align: center;
  padding: 1.25rem 0 2rem;
  font-size: 0.72rem;
  color: #5a5f6b;
}

.footer-copyright a { color: #6a6f7a; }
.footer-copyright a:hover { color: #C6A15B; }

/* --- AGE VERIFICATION MODAL --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay--open {
  display: flex;
  opacity: 1;
}

.modal {
  background: #1B1F25;
  border: 1px solid rgba(198, 161, 91, 0.2);
  border-radius: 14px;
  padding: 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal__icon {
  margin-bottom: 1rem;
  color: #C6A15B;
}

.modal__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.modal__text {
  font-size: 0.88rem;
  color: #B8B0A2;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.modal__actions .btn { min-width: 120px; }

/* Restricted screen */
.restricted-screen {
  display: none;
}

.restricted-screen--visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 2rem 1.25rem;
}

.restricted-screen__icon { margin-bottom: 1.5rem; }
.restricted-screen__title { margin-bottom: 1rem; }
.restricted-screen__text {
  font-size: 0.9rem;
  color: #B8B0A2;
  max-width: 500px;
  line-height: 1.6;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #15181D;
  border-top: 1px solid rgba(198, 161, 91, 0.15);
  z-index: 250;
  padding: 1rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-banner--visible { display: block; }

.cookie-banner__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.8rem;
  color: #B8B0A2;
  line-height: 1.4;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a { color: #C6A15B; text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* --- PAGE HEADER (internal pages) --- */
.page-header {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(198, 161, 91, 0.12);
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #6a6f7a;
  margin-bottom: 1rem;
}

.page-header__breadcrumb a { color: #B8B0A2; }
.page-header__breadcrumb a:hover { color: #C6A15B; }

.page-header__breadcrumb-sep { color: #5a5f6b; }

/* --- PROFILE PAGE SPECIFIC --- */
.profile-hero {
  background: #15181D;
  border-bottom: 1px solid rgba(198, 161, 91, 0.12);
  padding: 2.5rem 0;
}

.profile-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.profile-hero__meta { order: 1; }
.profile-hero__panel { order: 2; }

.profile-hero__name {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 0.75rem;
}

.profile-hero__summary {
  font-size: 0.9rem;
  color: #B8B0A2;
  line-height: 1.6;
}

.profile-hero__regulatory {
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid rgba(198, 161, 91, 0.15);
  border-radius: 10px;
  padding: 1.25rem;
}

.profile-hero__regulatory-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C6A15B;
  margin-bottom: 0.5rem;
}

.profile-hero__regulatory-text {
  font-size: 0.85rem;
  color: #B8B0A2;
  line-height: 1.5;
}

/* Profile TOC */
.profile-toc {
  background: #15181D;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(198, 161, 91, 0.08);
  position: sticky;
  top: 56px;
  z-index: 50;
}

.profile-toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
}

.profile-toc__link {
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  color: #8a8f99;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.profile-toc__link:hover {
  color: #F4EFE6;
  background: rgba(198, 161, 91, 0.08);
}

/* Profile content panels */
.profile-panel {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(198, 161, 91, 0.08);
}

.profile-panel:nth-child(even) { background: #15181D; }

.profile-panel__title {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.profile-panel__number {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C6A15B;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.profile-panel__content {
  font-size: 0.88rem;
  color: #B8B0A2;
  line-height: 1.65;
}

.profile-panel__content ul {
  list-style: none;
  padding: 0;
}

.profile-panel__content li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.profile-panel__content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(198, 161, 91, 0.4);
}

.profile-checklist {
  background: rgba(198, 161, 91, 0.04);
  border: 1px solid rgba(198, 161, 91, 0.15);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.profile-checklist__item {
  display: flex;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: #B8B0A2;
  align-items: flex-start;
}

.profile-checklist__mark {
  color: #C6A15B;
  flex-shrink: 0;
  margin-top: 2px;
}

.profile-cta-bar {
  padding: 2rem 0;
  text-align: center;
  background: #15181D;
}

.profile-cta-bar__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- CONTENT PAGE STYLES --- */
.content-page {
  padding: 2rem 0 3rem;
}

.content-page__body {
  font-size: 0.92rem;
  color: #B8B0A2;
  line-height: 1.7;
}

.content-page__body h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: #F4EFE6;
}

.content-page__body h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: #F4EFE6;
}

.content-page__body p { margin-bottom: 1rem; }

.content-page__body ul,
.content-page__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-page__body li { margin-bottom: 0.4rem; }
.content-page__body ul li { list-style: disc; }
.content-page__body ol li { list-style: decimal; }
.content-page__body strong { color: #F4EFE6; font-weight: 500; }

.content-page__body a { color: #C6A15B; text-decoration: underline; }
.content-page__body a:hover { color: #E3C98C; }

.content-page__body blockquote {
  border-left: 2px solid rgba(198, 161, 91, 0.3);
  padding: 0.75rem 1rem;
  margin: 1.5rem 0;
  background: rgba(198, 161, 91, 0.04);
  border-radius: 0 8px 8px 0;
  color: #E3C98C;
  font-style: italic;
}

.content-page__body .info-box {
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid rgba(198, 161, 91, 0.15);
  border-radius: 10px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.content-page__body .info-box__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.content-page__body .info-box__logo {
  width: 120px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.content-page__body .info-box__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 0.95rem;
  color: #F4EFE6;
  margin-bottom: 0;
}

/* Contact form */
.contact-form {
  background: #15181D;
  border: 1px solid rgba(198, 161, 91, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.form-group { margin-bottom: 1rem; }

.form-label {
  display: block;
  font-size: 0.82rem;
  color: #B8B0A2;
  margin-bottom: 0.35rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: #0C0E11;
  border: 1px solid rgba(198, 161, 91, 0.2);
  border-radius: 8px;
  color: #F4EFE6;
  font-size: 0.88rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #C6A15B;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- SKIP LINK --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #C6A15B;
  color: #0C0E11;
  padding: 0.5rem 1rem;
  z-index: 500;
  font-size: 0.85rem;
  font-weight: 600;
}

.skip-link:focus { top: 0; }

/* --- RESPONSIVE --- */

/* Tablet & smaller */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid .card-dossier:last-child { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-hero__inner { grid-template-columns: 1fr; }
  .profile-hero__panel { order: 0; }
  .profile-hero__meta { order: 1; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .burger-btn { display: flex; }
  
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid .card-dossier:last-child { grid-column: 1; max-width: 100%; justify-self: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .responsible-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal-nav__link { border-right: none; }
  .hero { padding: 2.5rem 0 1.5rem; }
  .section { padding: 2rem 0; }
  
  .modal__actions { flex-direction: column; }
  .modal__actions .btn { width: 100%; }
  
  .cookie-banner__inner { flex-direction: column; text-align: center; }
  .cookie-banner__actions { width: 100%; justify-content: center; }
  
  .profile-toc { display: none; }
}

@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .footer-resources__logos { gap: 0.75rem; }
  .footer-resources__logo { height: 28px; }
  .container { padding: 0 1rem; }
  .container-narrow { padding: 0 1rem; }
}

/* Small mobile */
@media (max-width: 360px) {
  html { font-size: 15px; }
  .card-dossier { padding: 1.25rem; }
  .modal { padding: 1.5rem; }
}

/* --- UTILITIES --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
