/* Pictured Life — common production fixes */

/* Real HTML hero images — LCP discoverable, responsive and high priority. */
[data-hero-image] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: none !important;
}

.hero-media,
.page-hero-media,
.article-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center center);
}

[data-hero-image]::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--hero-overlay, linear-gradient(to bottom, rgba(11,9,6,.4), rgba(11,9,6,.98)));
}

[data-hero-image] > :not(.hero-media):not(.page-hero-media):not(.article-hero-media) {
  position: relative;
  z-index: 2;
}


/* Keep the luxury cursor only where it makes sense. On touch devices or reduced-motion systems, return to the native cursor. */
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  body,
  a,
  button,
  input,
  textarea,
  select,
  label {
    cursor: auto !important;
  }

  .cur-dot,
  .cur-ring {
    display: none !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .cur-dot,
  .cur-ring {
    display: block;
  }
}

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 24px;
  align-items: center;
  background: rgba(11, 9, 6, .96);
  border: 1px solid rgba(200, 146, 58, .35);
  border-left: 3px solid var(--gold, #C8923A);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .45);
  backdrop-filter: blur(14px);
  color: var(--text, #EDE5D9);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(.16, 1, .3, 1);
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__title {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text, #EDE5D9);
}

.cookie-consent__text {
  margin: 0;
  max-width: 680px;
  font-size: 13px;
  line-height: 1.65;
  color: #BDB3A5;
}

.cookie-consent__text a {
  color: var(--gold, #C8923A);
  text-decoration: none;
}

.cookie-consent__text a:hover {
  color: var(--text, #EDE5D9);
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-consent__btn,
.cookie-preferences-btn {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(237, 229, 217, .14);
  border-radius: 0;
  background: transparent;
  color: var(--text, #EDE5D9);
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.cookie-consent__btn:hover,
.cookie-consent__btn:focus-visible,
.cookie-preferences-btn:hover,
.cookie-preferences-btn:focus-visible {
  border-color: var(--gold, #C8923A);
  outline: none;
}

.cookie-consent__btn--primary,
.cookie-preferences-btn {
  background: var(--gold, #C8923A);
  border-color: var(--gold, #C8923A);
  color: #0B0906;
}

.cookie-consent__btn--primary:hover,
.cookie-consent__btn--primary:focus-visible,
.cookie-preferences-btn:hover,
.cookie-preferences-btn:focus-visible {
  background: transparent;
  color: var(--gold, #C8923A);
}

.cookie-preferences-card {
  margin: 24px 0 32px;
  padding: 22px 24px;
  background: var(--bg-1, #141008);
  border: 1px solid var(--rule, rgba(237,229,217,.08));
  border-left: 2px solid var(--gold, #C8923A);
}

.cookie-preferences-card p {
  margin-bottom: 16px;
}

@media (max-width: 760px) {
  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__btn {
    flex: 1 1 140px;
  }
}

/* Standalone Blog link in the desktop header */
@media (min-width: 901px) {
  nav {
    justify-content: flex-start !important;
    gap: 24px;
  }

  nav .nav-logo {
    flex: 0 0 auto;
  }

  .nav-blog-side {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 20px;
    border: 1.5px solid var(--gold, #C8923A);
    color: var(--gold, #C8923A);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    line-height: 1;
    background: rgba(200, 146, 58, .12);
    box-shadow: inset 0 0 0 1px rgba(200, 146, 58, .08), 0 0 22px rgba(200, 146, 58, .10);
    transition: border-color .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease, transform .3s ease;
  }

  .nav-blog-side::before {
    content: '';
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
    background: currentColor;
    opacity: .85;
  }

  .nav-blog-side:hover,
  .nav-blog-side.active {
    border-color: var(--gold, #C8923A);
    background: var(--gold, #C8923A);
    color: #0B0906;
    box-shadow: 0 0 28px rgba(200, 146, 58, .24);
    transform: translateY(-1px);
  }

  nav .nav-links {
    margin-left: auto;
  }
}

@media (max-width: 900px) {
  .nav-blog-side {
    display: none !important;
  }
}

/* Fix logo display after adding width/height attributes for performance.
   The intrinsic logo is 1053x546; without width:auto, the width attribute can stretch it across the header. */
.nav-logo img {
  width: auto !important;
  height: 38px !important;
  max-width: 120px;
  object-fit: contain;
}

.nav-logo a {
  display: inline-flex;
  align-items: center;
  height: 38px;
}

footer img[src$="logo-pictured-life.png"],
footer img[src$="/logo-pictured-life.png"] {
  width: auto !important;
  height: 28px !important;
  max-width: 90px;
  object-fit: contain;
}


/* ==========================================================
   PACK 2 — Croissance SEO éditoriale
   Sections business, maillage interne, FAQ et conversion.
   ========================================================== */
.growth-section {
  padding: 76px 60px;
  border-top: 1px solid var(--rule, rgba(237,229,217,.08));
  background: var(--bg, #0B0906);
}
.growth-section--soft {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(200,146,58,.08), transparent 60%),
    var(--bg, #0B0906);
}
.growth-section--compact { padding-top: 58px; padding-bottom: 58px; }
.growth-shell { max-width: 1180px; margin: 0 auto; }
.growth-kicker {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold, #C8923A);
  margin-bottom: 18px;
}
.growth-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--text, #EDE5D9);
  margin: 0 0 22px;
}
.growth-title em { color: var(--gold, #C8923A); font-style: normal; }
.growth-lead {
  font-size: 15px;
  line-height: 1.9;
  color: #cdc4b6;
  max-width: 760px;
}
.growth-lead p + p { margin-top: 16px; }
.growth-two {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}
.growth-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.growth-card {
  border: 1px solid var(--rule, rgba(237,229,217,.08));
  background: var(--bg-1, #141008);
  padding: 26px 24px;
  min-height: 100%;
}
.growth-card .num,
.growth-mini-num {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold, #C8923A);
  margin-bottom: 14px;
}
.growth-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--text, #EDE5D9);
  margin: 0 0 12px;
}
.growth-card p,
.growth-card li {
  font-size: 14px;
  line-height: 1.78;
  color: var(--muted, #6E665C);
}
.growth-card ul { list-style: none; margin: 0; padding: 0; }
.growth-card li { position: relative; padding-left: 18px; margin-bottom: 8px; }
.growth-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .78em;
  width: 6px;
  height: 1px;
  background: var(--gold, #C8923A);
}
.growth-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.growth-link-card {
  display: block;
  border: 1px solid var(--rule, rgba(237,229,217,.08));
  padding: 20px 18px;
  text-decoration: none;
  color: var(--text, #EDE5D9);
  background: rgba(20,16,8,.58);
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
  cursor: none;
}
.growth-link-card:hover {
  border-color: rgba(200,146,58,.45);
  background: var(--bg-1, #141008);
  transform: translateY(-2px);
}
.growth-link-card .t {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.growth-link-card .m {
  display: block;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold, #C8923A);
}
.growth-link-card .d {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted, #6E665C);
}
.growth-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule, rgba(237,229,217,.08));
  margin-top: 34px;
}
.growth-process-step {
  background: var(--bg, #0B0906);
  padding: 26px 24px;
}
.growth-process-step h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text, #EDE5D9);
  margin: 0 0 10px;
}
.growth-process-step p { font-size: 13px; color: var(--muted, #6E665C); line-height: 1.72; }
.growth-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--rule, rgba(237,229,217,.08));
}
.growth-proof {
  background: var(--bg-1, #141008);
  padding: 24px;
}
.growth-proof strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  color: var(--text, #EDE5D9);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.growth-proof span { font-size: 13px; line-height: 1.7; color: var(--muted, #6E665C); }
.growth-faq {
  border-top: 1px solid var(--rule, rgba(237,229,217,.08));
  margin-top: 40px;
}
.growth-faq details {
  border-bottom: 1px solid var(--rule, rgba(237,229,217,.08));
  padding: 0;
}
.growth-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.2;
  color: var(--text, #EDE5D9);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.growth-faq summary::-webkit-details-marker { display: none; }
.growth-faq summary::after {
  content: '+';
  color: var(--gold, #C8923A);
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  line-height: 1;
}
.growth-faq details[open] summary::after { content: '–'; }
.growth-faq p {
  max-width: 820px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted, #6E665C);
  padding: 0 0 22px;
}
.growth-cta-inline {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.growth-text-link {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold, #C8923A);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,146,58,.45);
  padding-bottom: 4px;
  cursor: none;
}
.growth-text-link:hover { color: var(--text, #EDE5D9); border-color: var(--text, #EDE5D9); }
.growth-quote {
  border-left: 2px solid var(--gold, #C8923A);
  padding-left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.35;
  color: var(--text, #EDE5D9);
  font-style: italic;
}
@media (max-width: 920px) {
  .growth-section { padding: 54px 24px; }
  .growth-two { grid-template-columns: 1fr; gap: 30px; }
  .growth-card-grid,
  .growth-link-grid,
  .growth-process,
  .growth-proof-strip { grid-template-columns: 1fr; }
  .growth-card { padding: 24px 20px; }
  .growth-link-card { cursor: pointer; }
  .growth-faq summary { padding: 20px 0; }
}


/* PACK 2 alignment fix — align right column copy with the main H2, not the small kicker. */
@media (min-width: 921px) {
  .growth-two > .growth-lead {
    padding-top: 30px;
  }

  .growth-two > .growth-lead > :first-child {
    margin-top: 0;
  }
}


/* Mobile burger fix: hidden menu links must not intercept the burger tap.
   Links become tappable only when the menu is actually open. */
.mobile-menu a {
  position: relative;
  z-index: 3;
  pointer-events: none;
  touch-action: manipulation;
}
body.menu-open .mobile-menu a {
  pointer-events: auto;
}

/* Mobile menu spacing fix — keep the first item fully visible and tappable.
   The previous full-screen menu was vertically centered; on small mobile viewports
   the first item could be clipped at the top. */
@media (max-width: 860px) {
  .mobile-menu {
    justify-content: flex-start !important;
    padding-top: calc(env(safe-area-inset-top, 0px) + 92px) !important;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 42px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu ul {
    width: 100%;
    flex: 0 0 auto;
  }

  .mobile-menu ul li {
    overflow: visible !important;
  }

  .mobile-menu ul a {
    min-height: 66px;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .mobile-menu-close {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 22px) !important;
    right: 24px !important;
    z-index: 230 !important;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


/* === Share reportage block === */
.share-reportage {
  max-width: 760px;
  margin: 42px auto 0;
  padding: 30px 32px;
  border: 1px solid rgba(237,229,217,.10);
  border-left: 2px solid #C8923A;
  background: linear-gradient(135deg, rgba(200,146,58,.08), rgba(20,16,8,.45));
}
.share-reportage .share-eyebrow {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #C8923A;
  margin-bottom: 12px;
}
.share-reportage h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  color: #EDE5D9;
}
.share-reportage p {
  color: #9b9184;
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 18px;
}
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 16px;
  border: 1px solid rgba(237,229,217,.14);
  background: rgba(11,9,6,.35);
  color: #EDE5D9;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: border-color .25s ease, color .25s ease, background .25s ease, transform .25s ease;
}
.share-btn:hover,
.share-btn:focus-visible {
  border-color: rgba(200,146,58,.75);
  color: #C8923A;
  background: rgba(200,146,58,.08);
  transform: translateY(-1px);
}
.share-btn.share-primary {
  background: #C8923A;
  border-color: #C8923A;
  color: #0B0906;
}
.share-btn.share-primary:hover,
.share-btn.share-primary:focus-visible {
  background: #EDE5D9;
  border-color: #EDE5D9;
  color: #0B0906;
}
.share-btn[disabled] {
  opacity: .55;
  pointer-events: none;
}
.share-note {
  margin-top: 14px !important;
  font-size: 12px !important;
  color: #6E665C !important;
}
@media (max-width: 640px) {
  .share-reportage { margin: 34px 24px 0; padding: 24px 22px; }
  .share-actions { display: grid; grid-template-columns: 1fr; }
  .share-btn { width: 100%; }
}



/* Liens contextuels SEO dans les textes éditoriaux */
.growth-lead a {
  color: var(--gold, #C8923A);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,146,58,.4);
}
.growth-lead a:hover { color: var(--text, #EDE5D9); border-color: var(--text, #EDE5D9); }
