/* ═══════════════════════════════════════
   EL HAITEM ◆ LAW — Design System
   ═══════════════════════════════════════ */

/* --- Variables --- */
:root {
  --serif: 'Outfit', sans-serif;
  --sans: 'Poppins', sans-serif;
  --gold: rgba(255, 163, 139, 0.45);
  --gold-solid: #D4603F;
  --sky: #B5D8E8;
  --sky-light: rgba(181, 216, 232, 0.15);
  --coral: #FFA38B;
  --dark: #1A1A1A;
  --gray-bg: #F2F2F2;
  --gray-bg-alt: #F9F9F9;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--sans);
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Typography utilities --- */
.sr { font-family: var(--serif); font-weight: 700; }
.sn { font-family: var(--sans); font-weight: 300; }
.hi { background: linear-gradient(180deg, transparent 55%, var(--gold) 55%); padding: 0 2px; }
.hi-sky { background: linear-gradient(180deg, transparent 55%, var(--gold) 55%); padding: 0 2px; }
.label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
}

/* --- Layout --- */
.inner { max-width: 1100px; margin: 0 auto; }
.section { padding: 80px clamp(20px, 5vw, 60px); }
/* Listes dans le contenu WYSIWYG des sections — réactive les puces (le reset global ul désactive partout) */
.section .sn ul,
.section .sn ol { padding-left: 20px; margin-bottom: 18px; max-width: 800px; }
.section .sn ul { list-style: disc; }
.section .sn ol { list-style: decimal; }
.section .sn li { margin-bottom: 4px; font-size: 14px; font-weight: 300; color: #333; line-height: 1.9; }
.flex-row { display: flex; gap: 48px; align-items: center; }
.flex-start { align-items: flex-start; }
.wg { display: grid; gap: 20px; }
.wg3 { grid-template-columns: 1fr 1fr 1fr; }
.wg2 { grid-template-columns: 1fr 1fr; }

/* --- Buttons --- */
.bd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .3px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background .3s;
  text-decoration: none;
}
.bd:hover { background: #333; }
.bd.urgence-cta { background: var(--gold-solid); color: #fff; font-size: 15px; padding: 18px 36px; }
.bd.urgence-cta:hover { background: #B34A2E; }
/* Variante mobile (tel:) cachée par défaut, on garde la version desktop (Calendly) */
.urgence-cta--mobile { display: none; }
@media (max-width: 768px) {
  .urgence-cta--mobile { display: inline-flex; }
  .urgence-cta--desktop { display: none; }
}
.bo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .3px;
  padding: 13px 28px;
  border: 1px solid var(--dark);
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}
.bo:hover { background: var(--dark); color: #fff; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fade { animation: fadeUp .7s ease both; }
.fd1 { animation-delay: .1s; }
.fd2 { animation-delay: .22s; }
.fd3 { animation-delay: .34s; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .97) 85%, rgba(181, 216, 232, .15) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(181, 216, 232, .3);
  padding: 0 clamp(20px, 5vw, 60px);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav .logo img {
  height: 100px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nv {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .5px;
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  padding: 6px 12px;
  border-radius: 3px;
}
.nv:hover { background: var(--coral); color: #fff; }
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 110px;
}
.nv-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  padding: 12px 0;
  min-width: 260px;
  z-index: 200;
  border-top: 2px solid var(--sky);
}
.nav-item:hover .nv-sub { display: block; }
.nav-item:last-child .nv-sub { right: 0; left: auto; }
.nv-sub a {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: #333;
  padding: 8px 20px;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nv-sub a:hover { background: rgba(255, 163, 139, .1); color: var(--gold-solid); }

/* Hamburger mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  position: absolute;
  left: 0;
  transition: all .3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 60px clamp(20px, 5vw, 60px) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  font-size: 14px;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: .5px;
}
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid ul a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: #aaa;
  text-decoration: none;
  transition: color .2s;
}
.footer-grid ul a:hover { color: #fff; }
.footer-brand p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.8;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--coral);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--coral);
  font-weight: 300;
  transition: all .2s;
  text-decoration: none;
  width: 130px;
  justify-content: center;
}
.footer-social a:hover { background: var(--coral); color: #fff; }
.footer-social a svg { width: 14px; height: 14px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span,
.footer-bottom a {
  font-family: var(--sans);
  font-size: 12px;
  color: #999;
  text-decoration: none;
}
.footer-bottom a:hover { color: #fff; }

/* ═══════════════════════════════════════
   URGENCY FLOATING BUTTON
   ═══════════════════════════════════════ */
.urgency-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #B8442A;
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3px;
  padding: 16px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(184, 68, 42, .4);
  transition: all .3s ease;
}
.urgency-btn:hover {
  background: #B34A2E;
  box-shadow: 0 6px 28px rgba(212, 96, 63, .55);
  transform: translateY(-2px);
}
.urgency-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid var(--gold-solid);
  animation: pulse-ring 2s ease-out infinite;
}
/* Variante mobile (tel:) cachée par défaut, desktop (Calendly) visible */
.urgency-btn--mobile { display: none; }
@media (max-width: 768px) {
  .urgency-btn--mobile { display: inline-flex; }
  .urgency-btn--desktop { display: none; }
}

/* ═══════════════════════════════════════
   LANGUAGE SWITCH FAB (mobile only)
   ═══════════════════════════════════════ */
.lang-switch-fab { display: none; }
@media (max-width: 768px) {
  .lang-switch-fab {
    position: fixed;
    left: max(14px, env(safe-area-inset-left, 14px));
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .94);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--dark);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    padding: 9px 13px;
    border: 1px solid rgba(26, 26, 26, .12);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .lang-switch-fab:hover,
  .lang-switch-fab:focus-visible {
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    transform: translateY(-1px);
  }
  .lang-switch-fab__icon { display: inline-flex; color: var(--gold-solid); }
  .lang-switch-fab__icon svg { display: block; }
  body.nav-open .lang-switch-fab { display: none; }
}

/* ═══════════════════════════════════════
   CARDS
   ═══════════════════════════════════════ */
.ch {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor: pointer;
  background: #fff;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
}
.ch:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
  border-top-color: var(--sky);
}
.la {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s;
}
.la:hover { gap: 10px; }

/* ═══════════════════════════════════════
   HERO EXPERTISE (pages services)
   ═══════════════════════════════════════ */
.hero-expertise {
  padding: 80px clamp(20px, 5vw, 60px) 60px;
  background: #fff;
  position: relative;
}
.hero-expertise .inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.hero-left { flex: 1; }
.hero-right {
  flex: 0 0 auto;
  width: 320px;
  background: var(--sky-light);
  border-left: 3px solid var(--sky);
  padding: 32px;
  border-radius: 0 4px 4px 0;
}
.hero-expertise h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-expertise .subtitle {
  font-size: 15px;
  color: #666;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.6;
}
.hero-expertise .intro {
  font-size: 14px;
  color: #333;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-expertise .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sommaire sidebar */
.sommaire h3 { font-size: 14px; margin-bottom: 16px; color: var(--dark); }
.sommaire a {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: #555;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(181, 216, 232, .2);
  transition: color .2s;
}
.sommaire a:hover { color: var(--gold-solid); }

/* ═══════════════════════════════════════
   CONTENT SECTIONS (alternating)
   ═══════════════════════════════════════ */
.content-section { padding: 64px clamp(20px, 5vw, 60px); }
.content-section.bg-gray { background: var(--gray-bg-alt); }
.content-section.bg-white { background: #fff; }
.content-section h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 20px;
  line-height: 1.25;
}
.content-section h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 32px;
}
.content-section p {
  font-size: 14px;
  font-weight: 300;
  color: #333;
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 800px;
}
.content-section ul {
  font-size: 14px;
  font-weight: 300;
  color: #333;
  line-height: 1.9;
  padding-left: 20px;
  margin-bottom: 20px;
  max-width: 800px;
  list-style: disc;
}
.content-section ul li { margin-bottom: 4px; }

/* ═══════════════════════════════════════
   HIGHLIGHT BOX & CALLOUT URGENCE
   ═══════════════════════════════════════ */
.highlight-box {
  border-left: 3px solid var(--sky);
  padding: 20px 24px;
  background: var(--sky-light);
  margin: 24px 0;
  max-width: 800px;
  border-radius: 0 4px 4px 0;
}
.highlight-box p { margin-bottom: 0; color: var(--dark); font-weight: 400; }

.callout-urgence {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 3px solid var(--gold-solid);
  padding: 20px 24px;
  background: rgba(255, 163, 139, .06);
  margin: 24px 0;
  max-width: 800px;
  border-radius: 0 4px 4px 0;
}
.callout-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: var(--gold-solid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.callout-urgence p {
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.85;
  margin-bottom: 0;
  max-width: none;
}

/* ═══════════════════════════════════════
   CTA BLOCK
   ═══════════════════════════════════════ */
.cta-block {
  padding: 64px clamp(20px, 5vw, 60px);
  background: linear-gradient(135deg, #EDF5F9 0%, #F0F7FA 50%, #F2F2F2 100%);
  text-align: center;
}
.cta-block h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
}
.cta-block p {
  font-size: 14px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-block .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   HERO HOME
   ═══════════════════════════════════════ */
.hero-home {
  padding: 80px clamp(20px, 5vw, 60px) 60px;
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 400px;
  height: 520px;
  overflow: hidden;
  flex: 0 0 auto;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════
   DOMAINES D'INTERVENTION
   ═══════════════════════════════════════ */
.section-domaines { background: var(--gray-bg); }
.domaines-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.domaines-label::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--sky);
}
.domaines-label span {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   POURQUOI LE CABINET
   ═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px 48px;
}
.why-item {
  border-left: 3px solid var(--sky);
  padding-left: 24px;
}
.why-item h3 { font-size: 22px; margin-bottom: 10px; }
.why-item p { font-size: 13px; color: #333; line-height: 1.75; }

/* ═══════════════════════════════════════
   ABOUT (Le cabinet en quelques mots)
   ═══════════════════════════════════════ */
.section-about {
  background: linear-gradient(135deg, #EDF5F9 0%, #F0F7FA 50%, #F2F2F2 100%);
  position: relative;
}
.about-photo {
  width: 380px;
  height: 520px;
  overflow: hidden;
  flex: 0 0 auto;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════
   HONORAIRES
   ═══════════════════════════════════════ */
.section-honoraires {
  padding: 72px clamp(20px, 5vw, 60px);
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════════
   REVIEWS CAROUSEL
   ═══════════════════════════════════════ */
.section-reviews {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
}
.reviews-header {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 clamp(20px, 5vw, 60px);
}
.reviews-viewport { overflow: hidden; position: relative; }
.reviews-track {
  display: flex;
  gap: 32px;
  animation: scroll var(--reviews-duration, 60s) linear infinite;
  width: max-content;
}
.reviews-track:hover,
.reviews-track:focus-within {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; transform: none; }
}
.review-card {
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-left: 3px solid var(--sky);
  padding: 28px;
}
.review-card .stars { color: #e3a528; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { font-size: 13px; color: #333; line-height: 1.7; font-style: italic; }
.review-card .author { font-size: 12px; color: #767676; margin-top: 14px; font-style: normal; }

/* ═══════════════════════════════════════
   CONTACT SECTION (home)
   ═══════════════════════════════════════ */
.section-contact-home {
  padding: 60px clamp(20px, 5vw, 60px);
  background: var(--gray-bg);
}
.contact-home-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-home-grid > div { flex: 1; min-width: 300px; }
.contact-home-grid iframe { width: 100%; height: 280px; border: 0; border-radius: 4px; }

/* ═══════════════════════════════════════
   HERO PROFILE (fidèle maquette)
   ═══════════════════════════════════════ */
.hero-profile {
  display: flex;
  min-height: 620px;
  border-bottom: 2px solid var(--sky);
}
.hero-photo {
  flex: 0 0 440px;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-bio {
  flex: 1;
  padding: 60px clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bio h1 { font-size: clamp(30px, 4vw, 42px); line-height: 1.15; margin-bottom: 6px; }
.hero-bio .role { font-size: 14px; color: var(--gold-solid); font-weight: 300; margin-bottom: 24px; display: block; }
.hero-bio p { font-size: 14px; font-weight: 300; color: #333; line-height: 1.85; margin-bottom: 14px; max-width: 520px; }

/* Social row */
.social-row {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  align-items: center;
}
.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 300;
  color: #666;
  text-decoration: none;
  transition: color .2s;
}
.social-row a:hover { color: var(--gold-solid); }
.social-row a:hover svg { fill: var(--gold-solid); stroke: var(--gold-solid); }

/* Key figures */
.key-figures {
  display: flex;
  gap: 48px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.key-figure { text-align: center; }
.key-figure .number {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  color: var(--gold-solid);
  display: block;
}
.key-figure .label {
  font-size: 11px;
  color: #666;
  font-weight: 300;
  letter-spacing: .5px;
  margin-top: 2px;
}

/* Press links (profil) */
.press-link {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: background .2s;
}
.press-link:hover { background: rgba(181, 216, 232, .04); }
.press-source { font-size: 12px; color: #999; font-weight: 300; flex: 0 0 140px; }
.press-title { font-size: 14px; color: var(--dark); font-weight: 300; transition: color .2s; }
.press-link:hover .press-title { color: var(--gold-solid); }

/* ═══════════════════════════════════════
   EXPERTISE GRID (profils)
   ═══════════════════════════════════════ */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
  max-width: 800px;
}
@media (max-width: 800px) {
  .expertise-grid { grid-template-columns: 1fr; }
}
.expertise-card {
  border-left: 3px solid var(--sky);
  padding: 20px;
  background: #F9F9F9;
  transition: transform .3s;
}
.expertise-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0, 0, 0, .05); }
.expertise-card h3 { font-size: 16px; margin-top: 0; margin-bottom: 6px; }
.expertise-card p { font-size: 13px; color: #555; line-height: 1.7; font-weight: 300; max-width: none; margin-bottom: 0; }

/* ═══════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════ */
.timeline-item {
  display: flex;
  gap: 20px;
  border-left: 3px solid var(--sky);
  padding-left: 20px;
  margin-bottom: 24px;
}
.timeline-item h3 { font-size: 18px; margin-bottom: 8px; }
.timeline-item .date { font-size: 12px; color: #999; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: #333; line-height: 1.85; font-weight: 300; margin-bottom: 0; }

/* ═══════════════════════════════════════
   PRESS
   ═══════════════════════════════════════ */
.hero-press {
  padding: 80px clamp(20px, 5vw, 60px) 60px;
  background: linear-gradient(to bottom, #fff 70%, rgba(181, 216, 232, .08) 100%);
  border-bottom: 2px solid var(--sky);
}
.hero-press h1 { font-size: clamp(30px, 4vw, 44px); line-height: 1.15; margin-bottom: 12px; }
.hero-press .sub { font-size: 14px; color: #333; font-weight: 300; line-height: 1.85; max-width: 750px; margin-bottom: 24px; }

.filter-bar {
  padding: 0 clamp(20px, 5vw, 60px);
  background: #F9F9F9;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 110px;
  z-index: 50;
}
.filter-bar .inner { display: flex; gap: 0; overflow-x: auto; }
.filter-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: #666;
  padding: 14px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.filter-btn:hover,
.filter-btn.active { color: var(--dark); border-bottom-color: var(--gold-solid); }

/* Timeline */
.timeline-section { padding: 48px clamp(20px, 5vw, 60px) 64px; }
.press-entry {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid #eee;
  transition: background .2s;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 4px;
}
.press-entry:hover { background: rgba(181, 216, 232, .04); }
.press-entry:last-child { border-bottom: none; }

/* Media badge */
.media-badge {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.media-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}
.media-logo:hover { transform: scale(1.05); }
.media-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .3px;
}
.media-type {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #999;
  font-weight: 300;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Entry content */
.entry-content { flex: 1; }
.entry-date { font-size: 11px; color: #999; font-weight: 300; margin-bottom: 6px; display: block; }
.entry-title { font-family: var(--serif); font-weight: 700; font-size: 18px; line-height: 1.35; margin-bottom: 10px; }
.entry-desc { font-size: 13px; font-weight: 300; color: #333; line-height: 1.75; max-width: 700px; }
.entry-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gold-solid);
  text-decoration: none;
  margin-top: 12px;
  font-weight: 400;
  transition: gap .2s;
}
.entry-link:hover { gap: 10px; }

/* Themes */
.themes-section {
  padding: 48px clamp(20px, 5vw, 60px);
  background: #F9F9F9;
  border-top: 2px solid var(--sky);
}
.themes-section h2 { font-family: var(--serif); font-weight: 700; font-size: 22px; margin-bottom: 20px; }
.themes-section p { font-size: 13px; font-weight: 300; color: #333; line-height: 1.8; max-width: 800px; margin-bottom: 20px; }
.theme-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.theme-tag {
  font-size: 11px;
  font-weight: 300;
  color: #555;
  background: #fff;
  border: 1px solid #ddd;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all .2s;
}
.theme-tag:hover { border-color: var(--sky); background: var(--sky-light); }

/* Contact presse */
.contact-press {
  padding: 48px clamp(20px, 5vw, 60px);
  background: var(--dark);
  color: #fff;
  text-align: center;
}
.contact-press h2 { font-family: var(--serif); font-weight: 700; font-size: 24px; margin-bottom: 8px; color: #fff; }
.contact-press p { font-size: 13px; font-weight: 300; color: #ccc; line-height: 1.7; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.contact-press .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-press .bd { background: #fff; color: var(--dark); }
.contact-press .bd:hover { background: #eee; }
.contact-press .bo { border-color: #fff; color: #fff; }
.contact-press .bo:hover { background: #fff; color: var(--dark); }

/* Dark CTA (legacy) */
.cta-dark {
  padding: 64px clamp(20px, 5vw, 60px);
  background: var(--dark);
  text-align: center;
  color: #fff;
}
.cta-dark h2 { color: #fff; margin-bottom: 12px; }
.cta-dark p { color: #999; margin-bottom: 28px; }
.cta-dark .bd { background: #fff; color: var(--dark); }
.cta-dark .bd:hover { background: #f0f0f0; }

/* ═══════════════════════════════════════
   BLOG
   ═══════════════════════════════════════ */
.hero-blog {
  padding: 80px clamp(20px, 5vw, 60px) 40px;
  background: #fff;
}
.blog-layout {
  display: flex;
  gap: 48px;
  padding: 40px clamp(20px, 5vw, 60px);
  max-width: 1200px;
  margin: 0 auto;
}
.blog-main { flex: 1; }
.blog-side { flex: 0 0 300px; }
.article-grid { display: grid; gap: 32px; }
.article-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f0f0f0;
}
.article-thumb {
  flex: 0 0 200px;
  height: 150px;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 4px;
}
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-body { flex: 1; }
.article-body .meta { font-size: 12px; color: #999; margin-bottom: 6px; }
.article-body h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.4; }
.article-body p { font-size: 13px; color: #555; line-height: 1.7; font-weight: 300; }
.article-body .author-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

.side-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 4px;
}
.blog-side {
  position: sticky;
  top: 200px;
  align-self: flex-start;
}
.side-card h4 { font-size: 14px; margin-bottom: 16px; }

/* Hero blog extras */
.hero-blog .intro {
  font-size: 14px;
  color: #333;
  font-weight: 300;
  line-height: 1.85;
  max-width: 750px;
  margin-bottom: 8px;
}
.hero-blog .byline {
  font-size: 12px;
  color: #666;
  font-weight: 300;
  font-style: italic;
}

/* Author tag on article cards */
.article-body .author-tag img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.article-body .author-tag .placeholder-avatar {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ddd;
}

/* Sidebar author mini cards */
.author-mini {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: padding-left .2s;
}
.author-mini:last-child { border-bottom: none; }
.author-mini:hover { padding-left: 6px; }
.author-mini img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
}
.author-mini .placeholder-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ddd;
  flex-shrink: 0;
}
.author-mini-info { flex: 1; }
.author-mini-info strong {
  font-family: var(--serif);
  font-size: 13px;
  display: block;
}
.author-mini-info span {
  font-size: 11px;
  color: #666;
  font-weight: 300;
}

/* Tag cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-pill {
  font-size: 11px;
  font-weight: 300;
  color: #555;
  background: #fff;
  border: 1px solid #ddd;
  padding: 4px 12px;
  border-radius: 16px;
  text-decoration: none;
  transition: all .2s;
}
.tag-pill:hover {
  border-color: var(--sky);
  background: var(--sky-light);
}

/* CTA newsletter (dark) */
.cta-newsletter {
  padding: 64px clamp(20px, 5vw, 60px);
  background: var(--dark);
  text-align: center;
  color: #fff;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.hero-contact {
  padding: 80px clamp(20px, 5vw, 60px) 60px;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0 clamp(20px, 5vw, 60px) 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid .contact-section-title {
  grid-column: 1 / -1;
  font-size: clamp(22px, 3vw, 28px);
  text-align: left;
  margin: 16px 0 0;
}
@media (max-width: 800px) {
  .contact-grid .contact-section-title { text-align: center; }
}
.info-card {
  border-left: 3px solid var(--sky);
  padding: 20px 24px;
  background: var(--sky-light);
  margin-bottom: 16px;
  border-radius: 0 4px 4px 0;
}
.info-card h4 { font-size: 14px; margin-bottom: 8px; }
.info-card p { font-size: 13px; color: #555; line-height: 1.7; font-weight: 300; }
.cta-card {
  border-left: 3px solid var(--gold-solid);
  padding: 20px 24px;
  background: rgba(255, 163, 139, .06);
  margin-bottom: 16px;
  border-radius: 0 4px 4px 0;
}

.social-section {
  text-align: center;
  padding: 48px clamp(20px, 5vw, 60px);
}
.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--coral);
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--coral);
  font-weight: 300;
  transition: all .2s;
}
.social-link:hover { background: var(--coral); color: #fff; }

/* ═══════════════════════════════════════
   MENTIONS LÉGALES
   ═══════════════════════════════════════ */
.hero-legal {
  padding: 80px clamp(20px, 5vw, 60px) 40px;
  border-bottom: 3px solid var(--sky);
}
.legal-section { padding: 48px clamp(20px, 5vw, 60px); }
.legal-section:nth-child(even) { background: var(--gray-bg-alt); }
.legal-section .inner { max-width: 800px; }
.legal-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}
.legal-detail strong { flex: 0 0 180px; font-weight: 400; color: #555; }

/* ═══════════════════════════════════════
   CABINET PAGE
   ═══════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-item {
  border-top: 3px solid var(--sky);
  padding-top: 20px;
}
.value-item h3 { font-size: 17px; margin-top: 0; margin-bottom: 8px; }
.value-item p { font-size: 13px; color: #333; line-height: 1.8; font-weight: 300; max-width: none; }

/* Profils côte à côte (fond noir) */
.profiles {
  display: flex;
  gap: 0;
  background: var(--dark);
  color: #fff;
}
.profile-team {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.profile-team + .profile-team { border-left: 1px solid #333; }
.profile-team-img {
  height: 450px;
  overflow: hidden;
}
.profile-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.profile-team-img.profile-team-img--2 img {
  object-position: top;
}
.profile-team-img .placeholder {
  width: 100%;
  height: 100%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
}
.profile-team-info {
  padding: 32px;
  flex: 1;
}
.profile-team-info h3 { font-size: 24px; margin-bottom: 4px; margin-top: 0; color: #fff; }
.profile-team-info .role { font-size: 13px; color: var(--coral); font-weight: 300; margin-bottom: 14px; display: block; }
.profile-team-info p { color: #ccc; max-width: none; font-size: 13px; line-height: 1.7; font-weight: 300; }
.profile-team-info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--coral);
  text-decoration: none;
  margin-top: 12px;
  transition: gap .3s;
}
.profile-team-info a:hover { gap: 10px; }

/* Legacy mini cards */
.profile-card-mini {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.profile-card-mini img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  flex: 0 0 auto;
}

/* Info bar */
.info-bar {
  background: var(--sky-light);
  border-left: 3px solid var(--sky);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
}
.info-bar p { font-size: 14px; color: var(--dark); font-weight: 400; line-height: 1.8; margin: 0; }

/* ═══════════════════════════════════════
   AUTHOR PAGE
   ═══════════════════════════════════════ */
.author-hero {
  text-align: center;
  padding: 80px clamp(20px, 5vw, 60px) 60px;
}
.author-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  filter: grayscale(1);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   URGENCES PAGE
   ═══════════════════════════════════════ */
.urgence-cta-block {
  padding: 48px clamp(20px, 5vw, 60px);
  background: rgba(255, 163, 139, .06);
  border-left: 4px solid var(--gold-solid);
  text-align: center;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 800px) {
  .flex-row { flex-direction: column !important; }
  .wg3, .wg2 { grid-template-columns: 1fr; }
  .hero-photo { width: 100% !important; height: 350px; }
  .about-photo { width: 100% !important; height: 350px; }
  /* Carrousel avis : swipe manuel, plus d'auto-scroll en mobile */
  .reviews-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 20px;
    scrollbar-width: none;
  }
  .reviews-viewport::-webkit-scrollbar { display: none; }
  .reviews-track {
    animation: none;
    padding-inline: 20px;
    gap: 16px;
  }
  .review-card {
    flex: 0 0 280px;
    padding: 22px;
    scroll-snap-align: center;
  }
  .review-card--dupe { display: none; }
  .review-card p { font-size: 13px; line-height: 1.65; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .urgency-btn { bottom: 16px; right: 16px; padding: 14px 22px; font-size: 12px; }

  /* Nav mobile */
  .site-nav { z-index: 1002; }
  body.nav-open .site-nav { background: #fff; }
  .site-nav .logo { position: relative; z-index: 1001; }
  .nav-toggle { display: block; position: relative; z-index: 1003; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    max-width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    z-index: 1000;
    padding: 130px 24px 40px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.active { display: flex; }
  .nav-item { height: auto; flex-direction: column; gap: 8px; width: 100%; align-items: center; }
  .nv-sub {
    position: static;
    box-shadow: none;
    border-top: none;
    padding: 4px 0;
    min-width: auto;
    width: 100%;
    display: block;
    text-align: center;
  }
  .nv-sub a {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    padding: 6px 12px;
    line-height: 1.4;
    max-width: 100%;
  }
  /* Lock body scroll when menu open */
  body.nav-open { overflow: hidden; }

  /* Hero expertise */
  .hero-expertise .inner { flex-direction: column; }
  .hero-right { width: 100%; border-left: none; border-top: 3px solid var(--sky); }

  /* Profile */
  .hero-profile { flex-direction: column; }
  .hero-photo { flex: auto; height: 400px; }
  .key-figures { gap: 24px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Cabinet */
  .values-grid { grid-template-columns: 1fr; }
  .profiles { flex-direction: column; }
  .profile-team + .profile-team { border-left: none; border-top: 1px solid #333; }
  .profile-team-img { height: 300px; }

  /* Blog */
  .blog-layout { flex-direction: column; }
  .blog-side {
    flex: auto;
    order: 2;            /* sidebar APRÈS les articles, pas avant */
    position: static;    /* override du sticky desktop */
    top: auto;
  }
  .article-item { flex-direction: column; }
  .article-thumb { flex: auto; width: 100%; height: 200px; }

  /* Press */
  .press-entry { flex-direction: column; }
  .media-badge { flex-direction: row; width: auto; }
}

/* ═══════════════════════════════════════
   BREADCRUMBS (RankMath)
   ═══════════════════════════════════════ */
.breadcrumbs-wrap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.breadcrumbs-wrap a {
  color: #999;
  text-decoration: none;
  transition: color .2s;
}
.breadcrumbs-wrap a:hover { color: var(--gold-solid); }
.breadcrumbs-wrap .separator { margin: 0 6px; color: #ccc; }
/* deploy v3 */

/* ═══════════════════════════════════════
   FICHE AUTEUR — page-author-fiche.php
   ═══════════════════════════════════════ */
.author-hero { padding: 80px 20px 48px; text-align: center; background: linear-gradient(to bottom, #fff 60%, rgba(181,216,232,.08) 100%); border-bottom: 2px solid var(--sky); }
.author-hero .avatar { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; object-position: center 15%; border: 4px solid #fff; box-shadow: 0 4px 24px rgba(0,0,0,.1); margin: 0 auto 24px; display: block; transition: transform .4s ease, box-shadow .4s ease; }
.author-hero .avatar:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(181,216,232,.4); }
.author-hero h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 6px; }
.author-hero .role { font-size: 14px; color: var(--gold-solid); font-weight: 300; display: block; margin-bottom: 20px; }
.author-hero .bio { font-size: 14px; color: #333; font-weight: 300; line-height: 1.85; max-width: 620px; margin: 0 auto 24px; }
.author-hero .social-row { display: flex; gap: 16px; justify-content: center; align-items: center; margin-bottom: 24px; }
.author-hero .social-row a { color: #999; text-decoration: none; transition: color .2s; }
.author-hero .social-row a:hover { color: var(--gold-solid); }

.author-hero .stats-bar { display: flex; justify-content: center; gap: 48px; padding: 28px 0; margin: 0 auto; max-width: 600px; }
.author-hero .stat-item { text-align: center; }
.author-hero .stat-item .num { font-family: var(--serif); font-weight: 700; font-size: 28px; color: var(--gold-solid); display: block; }
.author-hero .stat-item .lbl { font-size: 11px; color: #666; font-weight: 300; letter-spacing: .5px; }

.expertise-section { padding: 64px 20px; background: #fff; }
.expertise-section h2 { font-family: var(--serif); font-weight: 700; font-size: 22px; text-align: center; margin-bottom: 32px; }
.expertise-section .expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.expertise-section .exp-card { background: #F9F9F9; border-left: 3px solid var(--sky); padding: 24px; transition: all .35s; cursor: default; }
.expertise-section .exp-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); background: #fff; }
.expertise-section .exp-card h3 { font-family: var(--serif); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.expertise-section .exp-card p { font-size: 13px; font-weight: 300; color: #555; line-height: 1.7; margin: 0; }

.parcours-section { padding: 64px 20px; background: #F9F9F9; border-top: 2px solid var(--sky); }
.parcours-section h2 { font-family: var(--serif); font-weight: 700; font-size: 22px; margin-bottom: 28px; }
.parcours-section .parcours-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.parcours-section .parcours-bullet { flex: 0 0 10px; height: 10px; background: var(--sky); border-radius: 50%; margin-top: 6px; }
.parcours-section .parcours-item p { font-size: 13px; font-weight: 300; color: #333; line-height: 1.7; margin: 0; }
.parcours-section .parcours-item strong { font-weight: 700; font-family: var(--serif); }

.articles-section { padding: 64px 20px; background: #fff; border-top: 2px solid var(--sky); }
.articles-section h2 { font-family: var(--serif); font-weight: 700; font-size: 22px; text-align: center; margin-bottom: 32px; }
.articles-section .article-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.articles-section .article-card { border: 1px solid #eee; padding: 24px; transition: all .3s; text-decoration: none; color: inherit; display: block; position: relative; overflow: hidden; }
.articles-section .article-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--sky); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.articles-section .article-card:hover::before { transform: scaleX(1); }
.articles-section .article-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.06); transform: translateY(-2px); }
.articles-section .article-card .tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #999; margin-bottom: 8px; display: block; }
.articles-section .article-card h3 { font-family: var(--serif); font-weight: 700; font-size: 15px; margin-bottom: 8px; line-height: 1.4; }
.articles-section .article-card p { font-size: 12px; color: #666; font-weight: 300; line-height: 1.6; margin: 0; }
.articles-section .article-card .date { font-size: 11px; color: #999; font-weight: 300; margin-top: 12px; display: block; }
.articles-section .see-all { text-align: center; margin-top: 28px; }

.press-section { padding: 64px 20px; background: #fff; border-top: 2px solid var(--sky); }
.press-section h2 { font-family: var(--serif); font-weight: 700; font-size: 22px; text-align: center; margin-bottom: 12px; }
.press-section .press-intro { font-size: 13px; color: #666; font-weight: 300; text-align: center; margin-bottom: 28px; }
.press-section .press-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 900px; margin: 0 auto 24px; }
.press-section .press-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: #F9F9F9; border: 1px solid #eee; font-size: 12px; font-weight: 300; color: #555; text-decoration: none; transition: all .2s; border-radius: 4px; }
.press-section .press-pill:hover { border-color: var(--sky); background: var(--sky-light); transform: translateY(-1px); }
.press-section .press-pill .pill-type { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: #999; background: #fff; padding: 2px 6px; border-radius: 8px; }
.press-section .see-all-press { text-align: center; margin-top: 20px; }

.cta-block { padding: 64px 20px; background: linear-gradient(135deg, #EDF5F9 0%, #F0F7FA 50%, #F2F2F2 100%); text-align: center; }
.cta-block h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 3vw, 28px); margin-bottom: 12px; }
.cta-block p { font-size: 14px; font-weight: 300; color: #333; line-height: 1.8; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-block .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 800px) {
  .expertise-section .expertise-grid,
  .articles-section .article-cards { grid-template-columns: 1fr; }
  .author-hero .stats-bar { gap: 24px; }
}
