/*
 * ============================================================================
 * design-standalone.css — Petermann redesign (shared tokens + homepage blocks)
 * ----------------------------------------------------------------------------
 * INTENT
 *   One stylesheet for prototype pages (/index-design-2.html today) and
 *   phased adoption on legacy routes (e.g. /fr/**). Prefer BEM blocks below over
 *   ad hoc rules; extend tokens in :root before adding one-off hex values.
 *
 * TOKENS (:root)
 *   Colour: --navy, --navy-deep, --navy-soft, --gold, --gold-light, --cream*,
 *           --paper, --muted, lines (--line, --line-soft), --surface-night,
 *           --text-slate (+ --text-on-night-strong / link hovers).
 *           Accents on dark surfaces: --accent-brass,
 *                                    --hairline-on-slate (--hairline-on-slate-strong).
 *   Type stacks: --sans (Inter), --serif (Cormorant family), --mono (IBM Plex Mono).
 *
 * LAYOUT  .shell — max-width 1320px, horizontal gutters (see media query).
 *
 * BLOCKS (BEM prefixes)
 *   .nav | .hero | .larbitre-band | .intro | .expertise | .pubs | .contact-* | .footer
 *   Supporting: .animate-section / .animate-block, Canada flag (.canada-flag--gold).
 *
 * OPTIONAL HELPERS — .pds-* (minimal; mirrors .shell gutters via .pds-shell).
 *
 * FONT LOADING — mirror Google Fonts weights from index-design-2.html.
 * ============================================================================
 */
:root {
  --navy: #0e2138;
  --navy-deep: #081628;
  --navy-soft: #1b3354;
  --gold: #c8a55b;
  --gold-light: #dcc189;
  --cream: #f5f0e6;
  --cream-soft: #faf6ee;
  --paper: #fbf9f4;
  --ink: #14181e;
  --line: rgba(14, 33, 56, 0.12);
  --line-soft: rgba(14, 33, 56, 0.06);
  /* Body copy grey (warm) — aligns with pubs excerpts & section hierarchy */
  --muted: #5c6473;

  /* Dark footer / navy panels rolled out site-wide — avoid duplicating slate hex */
  --surface-night: #0b1421;
  --text-slate: #94a3b8;
  --text-on-night-strong: #e2e8f0;
  --text-on-night-link: #cbd5e1;
  --text-on-night-hover: #f1f5f9;
  --accent-brass: #a68d60;
  --hairline-on-slate: rgba(148, 163, 184, 0.1);
  --hairline-on-slate-strong: rgba(148, 163, 184, 0.14);

  --fw-serif-accent: 500;
  --fw-sans-bold: 600;

  --serif: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;
}

/* -------------------------------------------------------------------------- */
/* 1. BASE + GLOBAL UTILITIES                                                  */
/* -------------------------------------------------------------------------- */

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--paper);
  /* sans default — titles & nav/buttons override */
  color: var(--muted);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow--ink {
  color: var(--navy);
  opacity: 0.55;
}

.serif {
  font-family: var(--serif);
  font-weight: var(--fw-serif-accent);
}

/* -------------------------------------------------------------------------- */
/* 2. LAYOUT (.shell) + SCROLL REVEALS                                         */
/* -------------------------------------------------------------------------- */

.shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
}

@media (max-width: 800px) {
  .shell {
    padding: 0 24px;
  }
}

.animate-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.animate-section.is-visible {
  opacity: 1;
  transform: none;
}

.animate-block {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) 0.08s,
    transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) 0.08s;
}

.animate-section.is-visible .animate-block {
  opacity: 1;
  transform: translateY(0);
}

.animate-block--delay-1 {
  transition-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  .animate-section,
  .animate-block {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -------------------------------------------------------------------------- */
/* 3. NAVIGATION                                                             */
/* -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 56px;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.nav__logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.nav__logo-link {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 68px;
  width: auto;
  margin-top: -8px;
  margin-bottom: -8px;
}

.nav__center {
  display: flex;
  gap: 36px;
  justify-self: center;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  padding: 6px 0;
  position: relative;
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lang a {
  color: var(--muted);
  padding: 6px 2px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.lang a:hover {
  color: var(--navy);
}

.lang a.lang--active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.lang__sep {
  color: rgba(14, 33, 56, 0.25);
}

@media (max-width: 1160px) {
  .nav .lang {
    gap: 4px;
  }

  .nav .lang a {
    padding: 6px 0;
    letter-spacing: 0.08em;
  }
}

.nav__social {
  display: flex;
  align-items: center;
  color: var(--muted);
  transition: color 0.2s;
}

.nav__social:hover {
  color: var(--navy);
}

.nav__cta {
  background: var(--navy);
  color: white;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav__cta:hover {
  background: var(--navy-soft);
}

/* Hamburger button — hidden on desktop */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 60;
}

.nav__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 100px 32px 60px;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__link {
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 500;
  color: var(--navy);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s;
}

.mobile-menu__link:first-child {
  border-top: 1px solid var(--line-soft);
}

.mobile-menu__link:hover {
  color: var(--gold);
}

.mobile-menu__bottom {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__lang {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu__lang-link {
  color: var(--muted);
  padding: 8px 4px;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-menu__lang-link:hover {
  color: var(--navy);
}

.mobile-menu__lang-link--active {
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
}

.mobile-menu__lang-sep {
  color: rgba(14, 33, 56, 0.25);
}

.mobile-menu__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mobile-menu__social:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 16px 24px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s;
}

.mobile-menu__cta:hover {
  background: var(--navy-soft);
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 1fr auto;
    padding: 14px 24px;
  }

  .nav__center {
    display: none;
  }

  .nav__right {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

@media (min-width: 1101px) {
  .mobile-menu {
    display: none;
  }
}

/* -------------------------------------------------------------------------- */
/* 3b. NAV + Bootstrap (main.min.css on /fr — NOT on root index.html)        */
/* -------------------------------------------------------------------------- */
/* Body offset for fixed bar; cancel Bootstrap .nav clearfix on our grid bar; */
/* beat .nav a and .me-petermann a / :hover (see css/main.min.css).           */

body.pds-fr-site.me-petermann {
  padding-top: 88px !important;
}

@media (max-width: 1100px) {
  body.pds-fr-site.me-petermann {
    padding-top: 72px !important;
  }
}

body.pds-fr-site.me-petermann > nav.nav::before,
body.pds-fr-site.me-petermann > nav.nav::after {
  content: none;
  display: none;
}

body.pds-fr-site.me-petermann nav.nav .nav__logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

body.pds-fr-site.me-petermann nav.nav .nav__logo-link {
  display: flex;
  align-items: center;
  border-bottom: none;
  text-decoration: none;
}

body.pds-fr-site.me-petermann nav.nav .nav__logo-link:hover,
body.pds-fr-site.me-petermann nav.nav .nav__logo-link:focus {
  border-bottom: none;
  text-decoration: none;
}

body.pds-fr-site.me-petermann nav.nav .nav__logo-img {
  height: 68px;
  width: auto;
  margin-top: -8px;
  margin-bottom: -8px;
}

body.pds-fr-site.me-petermann nav.nav .nav__center {
  display: flex;
  gap: 36px;
  justify-self: center;
}

body.pds-fr-site.me-petermann nav.nav .nav__link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  padding: 6px 0;
  position: relative;
  text-decoration: none;
  text-transform: none;
  background: transparent;
  border: none;
  border-bottom: none;
  opacity: 1;
}

body.pds-fr-site.me-petermann nav.nav .nav__link:hover,
body.pds-fr-site.me-petermann nav.nav .nav__link:focus {
  color: var(--gold);
  text-decoration: none;
  background: transparent;
  border-bottom: none;
  opacity: 1;
}

body.pds-fr-site.me-petermann nav.nav .nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
}

body.pds-fr-site.me-petermann nav.nav .nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}

body.pds-fr-site.me-petermann nav.nav .nav__social {
  display: flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  background: transparent;
  border: none;
  opacity: 1;
  transition: color 0.2s;
}

body.pds-fr-site.me-petermann nav.nav .nav__social:hover,
body.pds-fr-site.me-petermann nav.nav .nav__social:focus {
  color: var(--navy);
  text-decoration: none;
  background: transparent;
  opacity: 1;
}

body.pds-fr-site.me-petermann nav.nav .nav__cta {
  font-family: var(--sans);
  background: var(--navy);
  color: #fff;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  opacity: 1;
  transition: background 0.2s;
}

body.pds-fr-site.me-petermann nav.nav .nav__cta:hover,
body.pds-fr-site.me-petermann nav.nav .nav__cta:focus {
  background: var(--navy-soft);
  color: #fff;
  text-decoration: none;
  border-bottom: none;
  opacity: 1;
}

@media (max-width: 1100px) {
  body.pds-fr-site.me-petermann nav.nav {
    grid-template-columns: 1fr auto;
    padding: 14px 24px;
  }

  body.pds-fr-site.me-petermann nav.nav .nav__center {
    display: none;
  }

  body.pds-fr-site.me-petermann nav.nav .nav__right {
    display: none;
  }
}

/* -------------------------------------------------------------------------- */
/* 4. HERO                                                                    */
/* -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 104px 0 72px;
  overflow-x: clip;
  overflow-y: visible;
  box-sizing: border-box;
}

.hero .shell.hero__shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1320px;
  width: 100%;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
  flex: 1;
  min-height: min(calc(100dvh - 210px), 980px);
}

.hero__portrait-wrap {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  max-height: min(calc(100dvh - 280px), 560px);
  overflow: visible;
}

/* Navy panel: larger than the photo (original proportions) for contrast */
.hero__portrait-bg {
  position: absolute;
  left: -56px;
  top: -64px;
  bottom: -64px;
  width: 60%;
  background: var(--navy);
  z-index: 0;
}

.hero__portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin-left: 4%;
  background: var(--cream);
  overflow: hidden;
  border-radius: 2px;
}

.hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  padding: 24px 0;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-weight: 500;
}

.hero__title-line {
  display: block;
}

.hero__title-line--name em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

/* Credentials strip — horizontal uppercase + gold dots (standalone bundle / ref) */
.hero__credentials {
  margin: clamp(28px, 4.5vh, 44px) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 3.5vw, 40px);
  row-gap: 12px;
  max-width: 100%;
}

.hero__credentials li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__credentials li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(200, 165, 91, 0.25);
}

@media (max-width: 1000px) {
  .hero {
    min-height: 100dvh;
    padding: 96px 0 56px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .hero__portrait-wrap {
    max-width: min(360px, 88vw);
    max-height: min(calc(100dvh - 380px), 520px);
  }

  .hero__portrait-bg {
    left: -32px;
    top: -40px;
    bottom: -40px;
    width: 58%;
  }

  .hero__credentials {
    justify-content: flex-start;
    gap: clamp(12px, 3vw, 28px);
  }

  .hero__content.animate-block.animate-block--delay-1 {
    margin-top: clamp(16px, 4vw, 28px);
  }
}

/* -------------------------------------------------------------------------- */
/* 5. CANADA / LARBITRE STRIP                                                 */
/* -------------------------------------------------------------------------- */

.larbitre-band {
  background: var(--navy-deep);
  color: var(--cream);
  border-top: 1px solid rgba(200, 165, 91, 0.25);
  border-bottom: 1px solid rgba(200, 165, 91, 0.25);
}

.larbitre-band__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0 24px;
  flex-wrap: wrap;
}

.larbitre-band__left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

/* Red silhouette on transparency → remap to brand gold (works on navy) */
.canada-flag--gold {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(84%) sepia(32%) saturate(420%) hue-rotate(355deg)
    brightness(0.93) contrast(1.05);
}

.larbitre-band__flag-img {
  width: 52px;
  height: auto;
}

.larbitre-band__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

@media (min-width: 920px) {
  .larbitre-band__meta {
    flex-direction: row;
    align-items: baseline;
    gap: clamp(40px, 7vw, 120px);
  }

  .larbitre-band__tag {
    flex-shrink: 0;
  }
}

.larbitre-band__tag {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.larbitre-band__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gold-light);
}

.larbitre-band__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.larbitre-band__url {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: rgba(245, 240, 230, 0.78);
  transition: color 0.2s;
}

.larbitre-band__url:hover {
  color: var(--gold-light);
}

.larbitre-band__ext {
  opacity: 0.85;
  flex-shrink: 0;
}

.larbitre-band__go {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(200, 165, 91, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.larbitre-band__go:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

@media (max-width: 800px) {
  .larbitre-band__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 24px 28px;
  }

  .larbitre-band__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .larbitre-band__flag-img {
    width: 44px;
  }

  .larbitre-band__meta {
    gap: 8px;
  }

  .larbitre-band__tag {
    font-size: 9px;
  }

  .larbitre-band__title {
    font-size: 20px;
  }

  .larbitre-band__right {
    width: 100%;
    justify-content: space-between;
    padding-top: 4px;
    border-top: 1px solid rgba(200, 165, 91, 0.15);
  }

  .larbitre-band__url {
    font-size: 13px;
  }

  .larbitre-band__go {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* Article shell — same strip as L'Arbitre band: back control left, title right */
.larbitre-band--article-bar .larbitre-band__row {
  padding-top: 10px;
  padding-bottom: 10px;
}

.larbitre-band--article-bar .larbitre-band__left--back {
  flex-shrink: 0;
}

.larbitre-band__back-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
  transition: color 0.2s;
}

/* Beat `.me-petermann a { color: #0E2030 }` from main.min.css */
.larbitre-band--article-bar .larbitre-band__back-link,
.larbitre-band--article-bar .larbitre-band__back-link:visited {
  color: var(--gold-light);
}

.larbitre-band--article-bar .larbitre-band__back-link:hover {
  color: var(--gold);
}

.larbitre-band--article-bar .larbitre-band__back-link:focus-visible {
  color: var(--gold);
  outline: 2px solid rgba(200, 165, 91, 0.55);
  outline-offset: 3px;
}

.larbitre-band__back-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(200, 165, 91, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.larbitre-band__back-icon svg {
  display: block;
  margin-left: -2px;
}

.larbitre-band__back-link:hover .larbitre-band__back-icon {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.larbitre-band__back-text {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
  min-width: 0;
}

.larbitre-band__right--title {
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}

.larbitre-band__meta--article-title {
  align-items: flex-end;
  text-align: right;
}

.larbitre-band__meta--article-title .larbitre-band__tag {
  margin: 0;
}

.larbitre-band__title--article-page {
  margin: 0;
}

@media (min-width: 920px) {
  .larbitre-band__meta--article-title {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
}

@media (max-width: 800px) {
  .larbitre-band--article-bar .larbitre-band__row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 24px;
  }

  .larbitre-band--article-bar .larbitre-band__left {
    flex-direction: row;
    border-top: none;
    padding-top: 0;
    width: auto;
  }

  .larbitre-band--article-bar .larbitre-band__right--title {
    width: auto;
    justify-content: flex-end;
    border-top: none;
    padding-top: 0;
  }

  .larbitre-band__meta--article-title {
    gap: 6px;
  }

  .larbitre-band__title--article-page {
    font-size: clamp(17px, 4.2vw, 22px);
  }

  .larbitre-band__back-icon {
    width: 38px;
    height: 38px;
  }

  .larbitre-band__back-icon svg {
    width: 16px;
    height: 16px;
  }

  .larbitre-band__back-text {
    font-size: 11px;
    letter-spacing: 0.03em;
  }
}

/* -------------------------------------------------------------------------- */
/* 6. INTRO (« L'avocat »)                                                    */
/* -------------------------------------------------------------------------- */

.intro {
  padding: 120px 0 100px;
  background: var(--paper);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}

.intro__title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy);
  position: sticky;
  top: 100px;
}

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

.intro__title-eyebrow {
  margin-bottom: 24px;
}

.intro__body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.intro__body p {
  margin-bottom: 20px;
  text-wrap: pretty;
}

.intro__features {
  margin-top: 36px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.intro__feature {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  align-items: start;
}

.intro__feature-num {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums lining-nums;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  padding-top: 4px;
}

.intro__feature-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.005em;
}

.intro__feature-desc {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

.intro__title sup {
  font-size: 0.45em;
  vertical-align: super;
  margin-left: 0.06em;
}

.intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding: 16px 26px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, gap 0.2s;
}

.intro__cta:hover {
  background: var(--navy-soft);
  gap: 18px;
}

@media (max-width: 1000px) {
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro__title {
    position: static;
  }
}

/* -------------------------------------------------------------------------- */
/* 7. DOMAINES D'EXPERTISE                                                    */
/* -------------------------------------------------------------------------- */

.expertise {
  padding: 100px 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--line-soft);
}

.expertise__head {
  margin-bottom: 64px;
}

/* When only eyebrow labels the section — matches mockup eyebrow-first hierarchy */
.expertise__head .eyebrow {
  letter-spacing: 0.26em;
  font-size: 12px;
}

.expertise__title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--navy);
  max-width: 820px;
  margin-bottom: 0;
}

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

.expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.expertise__col {
  border-right: 1px solid var(--line);
  padding: 40px 32px 48px;
}

.expertise__col:last-child {
  border-right: none;
}

.expertise__col-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.expertise__col-num {
  flex-shrink: 0;
  padding-top: 5px;
  font-family: var(--sans);
  font-variant-numeric: tabular-nums lining-nums;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
}

/* Equal title block height (2 lines) so column dividers and lists align */
.expertise__col-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.005em;
  color: var(--navy);
  min-height: calc(1.22em * 2);
}

.expertise__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.expertise__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 16px;
  line-height: 1.45;
  color: var(--muted);
}

.expertise__item:last-child {
  border-bottom: none;
}

.expertise__item-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}

.expertise__bottom {
  text-align: center;
  padding: 56px 0 0;
}

@media (max-width: 900px) {
  .expertise__grid {
    grid-template-columns: 1fr;
  }

  .expertise__col {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 40px;
  }
}

/* -------------------------------------------------------------------------- */
/* 8. PUBLICATIONS                                                            */
/* -------------------------------------------------------------------------- */

.pubs {
  padding: 100px 0;
  background: var(--paper);
}

.pubs__head {
  margin-bottom: 40px;
}

.pubs__label {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(92, 100, 115, 0.76);
}

.pubs__title {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.55vw, 40px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy);
}

.pubs__list {
  display: flex;
  flex-direction: column;
}

.pub-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1.15fr) minmax(0, 1fr) 52px;
  gap: 24px 32px;
  align-items: center;
  padding: 28px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.35s ease, background 0.35s ease;
}

.pub-row:first-child {
  border-top: 1px solid var(--line);
}

.pub-row:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(200, 165, 91, 0.06), transparent 72%);
}

.pub-row__id {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums lining-nums;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.pub-row__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.pub-row__excerpt {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

.pub-row__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pub-row__arrow-inner {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--navy);
}

.pub-row:hover .pub-row__arrow {
  background: var(--navy);
  border-color: var(--navy);
}

.pub-row:hover .pub-row__arrow-inner {
  color: var(--cream);
}

.pubs__footer {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
}

.pubs__all {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 16px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pubs__all:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

@media (max-width: 900px) {
  .pub-row {
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
  }

  .pub-row__id {
    grid-column: 1;
    grid-row: 1;
  }

  .pub-row__arrow {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .pub-row__title {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .pub-row__excerpt {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 14px;
  }
}

/* -------------------------------------------------------------------------- */
/* 9. CONTACT                                                                  */
/* -------------------------------------------------------------------------- */

.contact-block {
  padding: 100px 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--line-soft);
}

.contact-block .contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
}

/* Gold uppercase sans — section strip + inputs (Étude Petermann ref.) */
.contact__lead {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__title {
  font-family: var(--serif);
  font-size: clamp(36px, 3.9vw, 54px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 18px 0 32px;
}

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

.contact__form-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__field label,
.contact__side-block-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.contact__field label {
  color: var(--gold);
}

.contact__side-block-label {
  color: var(--gold-light);
  margin-bottom: 8px;
}

.contact__field input,
.contact__field textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--gold);
}

.contact__submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 18px 32px;
  background: var(--navy);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s, gap 0.2s;
}

.contact__submit:hover {
  background: var(--navy-soft);
  gap: 20px;
}

.contact__side {
  background: var(--navy);
  color: var(--cream);
  padding: 48px 40px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__side-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.005em;
}

.contact__side-block p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.85);
}

.contact__side-block a.mail {
  color: rgba(245, 240, 230, 0.92);
  border-bottom: 1px solid rgba(200, 165, 91, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

.contact__side-block a.mail:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.contact__side .contact__cta-side {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 4px;
  padding: 14px 24px;
  background: transparent;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 165, 91, 0.45);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact__side .contact__cta-side:hover {
  background: rgba(200, 165, 91, 0.12);
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .contact-block .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* -------------------------------------------------------------------------- */
/* 10. FOOTER (dark slab — reuse tokens on legacy pages)                       */
/* -------------------------------------------------------------------------- */

.footer {
  background: var(--surface-night);
  color: var(--text-slate);
  font-family: var(--sans);
  padding: clamp(56px, 8vw, 84px) 0 clamp(56px, 8vw, 84px);
  border-top: 1px solid var(--hairline-on-slate);
  -webkit-font-smoothing: antialiased;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

/* Col 1 — matches index-2: logo stack + titre + présentation */
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer__brand-logo-link {
  display: block;
  line-height: 0;
}

.footer__brand-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.footer__brand-name {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-on-night-strong);
}

.footer__brand-text {
  margin: 0;
  max-width: 420px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-slate);
}

/* Col 2 — adresse site (voir index-2.html #footer-address) */
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer__line {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-slate);
}

.footer__mail-wrap {
  margin-top: 6px;
}

.footer__mail {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-on-night-link);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__mail:hover {
  color: var(--text-on-night-hover);
}

.footer__heading {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: var(--fw-sans-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-brass);
}

.footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-slate);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--text-on-night-link);
}

/* main.min.css `.me-petermann a` / `:hover` beats `.footer__mail` (0,1,1 vs 0,1,0) */
body.me-petermann .footer a.footer__mail {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-on-night-link);
  text-decoration: none;
  transition: color 0.2s;
}

body.me-petermann .footer a.footer__mail:hover,
body.me-petermann .footer a.footer__mail:focus {
  color: var(--text-on-night-hover);
}

.footer__bar {
  border-top: 1px solid var(--hairline-on-slate-strong);
  padding: 20px 0 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.78);
}

.footer__copy {
  flex-shrink: 0;
}

.footer__legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__legal-meta a {
  color: rgba(148, 163, 184, 0.88);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal-meta a:hover {
  color: var(--text-on-night-link);
}

.footer__sep {
  opacity: 0.55;
}

@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-bottom: 28px;
  }
}

/* ============================================================================
   OPTIONAL — .pds-* helpers (legacy /fr pages; avoid when a BEM block exists)
   ============================================================================ */

.pds-text-muted {
  color: var(--muted);
}

.pds-text-slate {
  color: var(--text-slate);
}

.pds-heading-serif-navy {
  font-family: var(--serif);
  font-weight: var(--fw-serif-accent);
  color: var(--navy);
}

/* Same max-width + gutters as `.shell` — wrap migrated regions inside legacy templates */
.pds-shell {
  box-sizing: border-box;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 56px;
  padding-right: 56px;
}

@media (max-width: 800px) {
  .pds-shell {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.pds-band-night-sans {
  background: var(--surface-night);
  color: var(--text-slate);
  font-family: var(--sans);
}
