:root {
  --primary:      oklch(0.56 0.13 285);
  --primary-deep: oklch(0.40 0.13 285);
  --primary-soft: oklch(0.78 0.08 285);
  --primary-tint: oklch(0.94 0.03 285);
  --primary-wash: oklch(0.97 0.015 285);
  --cream:    #f7f4ec;
  --paper:    #fbfaf6;
  --ink:      #1e1b2e;
  --ink-soft: #4a4660;
  --ink-mute: #7a7590;
  --rule:     rgba(30, 27, 46, 0.10);
  --maxw: 1180px;
  --pad:  48px;
}

/* ═══ EN-TÊTE ═══════════════════════════════════════════════════ */
.papefrance-siteheader {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,246,0.85);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--rule);
  font-family: 'DM Sans', system-ui, sans-serif;
}
.papefrance-siteheader__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.papefrance-siteheader__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
}
.papefrance-siteheader__brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: var(--ink);
  white-space: nowrap;
}
.papefrance-siteheader__brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}
.papefrance-siteheader__right, .papefrance-topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.papefrance-siteheader__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.papefrance-siteheader__nav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.papefrance-siteheader__nav a:hover,
.papefrance-siteheader__nav a[aria-current="page"] { color: var(--primary-deep); }
.papefrance-siteheader__cta {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--paper);
  background: var(--primary-deep);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .2s;
  white-space: nowrap;
}
.papefrance-siteheader__cta:hover {
  background: var(--primary-soft);
  color: var(--paper);
}
.papefrance-siteheader__cta:hover, .papefrance-siteheader__cta:focus, .papefrance-siteheader__cta:active {
  color: var(--paper);
}

/* Hamburger (mobile) */
.papefrance-siteheader__toggle {
  display: none;
  width: 42px; height: 42px;
  place-items: center;          /* inline-grid : centre le SVG de façon fiable */
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex: none;
  color: var(--ink);
}
.papefrance-siteheader__toggle svg { width: 20px; height: 20px; display: block; }
.papefrance-siteheader__toggle .icon-close { display: none; }
.papefrance-siteheader[data-open="true"] .papefrance-siteheader__toggle .icon-open { display: none; }
.papefrance-siteheader[data-open="true"] .papefrance-siteheader__toggle .icon-close { display: block; }

/* ═══ PIED DE PAGE ══════════════════════════════════════════════ */
.papefrance-sitefooter {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  font-family: 'DM Sans', system-ui, sans-serif;
}
.papefrance-sitefooter__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--pad) 52px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.papefrance-sitefooter__brand-main {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1.15;
}
.papefrance-sitefooter__brand-sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}
.papefrance-sitefooter__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 18px 0 0;
  max-width: 32ch;
}
.papefrance-sitefooter__col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 18px;
}
.papefrance-sitefooter__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.papefrance-sitefooter__col a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.papefrance-sitefooter__col a:hover { color: #fff; }
.papefrance-sitefooter__cta-card p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 16px;
}
.papefrance-sitefooter__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform .2s, background .2s;
}
.papefrance-sitefooter__cta:hover { transform: translateY(-1px); background: var(--primary-tint); }
.papefrance-sitefooter__cta .arrow { transition: transform .2s; }
.papefrance-sitefooter__cta:hover .arrow { transform: translateX(3px); }

.papefrance-sitefooter__bottom { border-top: 1px solid rgba(255,255,255,0.12); }
.papefrance-sitefooter__bottom-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
.papefrance-sitefooter__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.papefrance-sitefooter__legal a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s;
}
.papefrance-sitefooter__legal a:hover { color: #fff; }
.papefrance-sitefooter__social { display: flex; gap: 10px; }
.papefrance-sitefooter__social a {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: border-color .2s, color .2s, background .2s;
}
.papefrance-sitefooter__social a:hover { color: #fff; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }
.papefrance-sitefooter__social svg { width: 17px; height: 17px; display: block; }

/* ═══ Responsive (en-tête mobile + pied) ════════════════════════ */
@media (max-width: 900px) {
  .papefrance-siteheader__toggle { display: inline-grid; }
  .papefrance-siteheader__inner { position: relative; }
  .papefrance-siteheader__right {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 24px 40px -28px rgba(20,17,50,.5);
    padding: 8px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .papefrance-siteheader[data-open="true"] .papefrance-siteheader__right {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .papefrance-siteheader__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 15px;
  }
  .papefrance-siteheader__nav a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--rule);
  }
  .papefrance-siteheader__cta {
    text-align: center;
    margin-top: 16px;
    padding: 14px 18px;
  }

  .papefrance-sitefooter__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
    padding: 56px 24px 40px;
  }
  .papefrance-sitefooter__brand-block { grid-column: 1 / -1; }
  .papefrance-sitefooter__cta-card { grid-column: 1 / -1; }
  .papefrance-sitefooter__bottom-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 540px) {
  .papefrance-sitefooter__top { grid-template-columns: 1fr; }
}
