/* Page hero header */
.page-hero 
{
  background: var(--navy);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative geometric background */
.page-hero::before 
{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(58,123,191,0.25) 0%, transparent 60%),
    radial-gradient(circle at 10% 0%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Corner decorative lines */
.page-hero::after 
{
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  border-top: 1.5px solid rgba(255,255,255,0.2);
  border-left: 1.5px solid rgba(255,255,255,0.2);
  pointer-events: none;
}

.page-hero-inner 
{
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.1s both;
}

/* Pre-title category label */
.page-hero-label 
{
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 1.2rem;
}

.page-hero h1 
{
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
}

.page-hero h1 em 
{
  font-style: italic;
  font-weight: 400;
  color: var(--sky);
}

/* Thin separator */
.page-hero-rule 
{
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--steel-light), transparent);
  margin: 0 auto 1.4rem;
}

.page-hero p 
{
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
}

/* Main editorial container */
.editorial-section 
{
  background: var(--white);
  padding: 0;
}

/* Alternating editorial blocks (number | text | image) */
.editorial-block 
{
  display: grid;
  grid-template-columns: 64px 1fr 1fr;
  gap: 0;
  min-height: 420px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.3s ease;
}

.editorial-block:last-child 
{
  border-bottom: none;
}

.editorial-block:hover 
{
  background: var(--off-white);
}

/* Number column */
.editorial-number 
{
  background: var(--navy);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 0 0;
  position: relative;
}

/* Vertical decorative line */
.editorial-number::after 
{
  content: '';
  position: absolute;
  top: 4.5rem;
  left: 50%;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.1);
  transform: translateX(-50%);
}

.editorial-number span 
{
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  user-select: none;
}

/* Text column */
.editorial-text 
{
  padding: 4rem 3.5rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Specialty badge */
.editorial-badge 
{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.2rem;
}

.editorial-badge::before 
{
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--steel);
  border-radius: 2px;
}

.editorial-text h2 
{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.4rem;
  letter-spacing: 0.01em;
}

.editorial-text h2 em 
{
  font-style: italic;
  font-weight: 400;
  color: var(--steel);
}

.editorial-text p 
{
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.88;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.editorial-text p:last-of-type 
{
  margin-bottom: 0;
}

/* Key points list */
.editorial-list 
{
  list-style: none;
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.editorial-list li 
{
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

/* Custom list bullet */
.editorial-list li::before 
{
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel);
  margin-top: 7px;
}

/* Bold labels in lists */
.editorial-list li strong 
{
  color: var(--navy);
  font-weight: 700;
}

/* Image column */
.editorial-visual 
{
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

/* Light background texture */
.editorial-visual::before 
{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(58,123,191,0.08) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(26,53,87,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.editorial-visual svg 
{
  width: min(220px, 70%);
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
}

.editorial-block:hover .editorial-visual svg 
{
  opacity: 1;
  transform: scale(1.03);
}

/* Reversed layout */
.editorial-block.reverse 
{
  grid-template-columns: 64px 1fr 1fr;
}

.editorial-block.reverse .editorial-number 
{
  order: 1;
}

.editorial-block.reverse .editorial-visual 
{
  order: 2;
  background: var(--navy-deep);
}

.editorial-block.reverse .editorial-visual::before 
{
  background:
    radial-gradient(circle at 30% 60%, rgba(91,159,214,0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.editorial-block.reverse .editorial-visual svg 
{
  opacity: 0.7;
  filter: brightness(1.6);
}

.editorial-block.reverse:hover .editorial-visual svg 
{
  opacity: 0.9;
}

.editorial-block.reverse .editorial-text 
{
  order: 3;
}

/* Call to Action block */
.page-cta 
{
  background: var(--navy-deep);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cta::before 
{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(58,123,191,0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.page-cta-inner 
{
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.page-cta h2 
{
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}

.page-cta p 
{
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 2.4rem;
  line-height: 1.7;
}

/* CTA buttons container */
.page-cta-buttons 
{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Phone button */
.btn-cta-phone 
{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-cta-phone:hover 
{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

.btn-cta-phone svg 
{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Appointment button */
.btn-cta-rdv 
{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--steel);
  border: 1.5px solid var(--steel);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-cta-rdv:hover 
{
  background: var(--steel-light);
  border-color: var(--steel-light);
}

.btn-cta-rdv svg 
{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hide number column, 2-column grid */
@media (max-width: 960px) 
{
  .editorial-block,
  .editorial-block.reverse 
  {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-number 
  {
    display: none;
  }

  .editorial-block.reverse .editorial-visual 
  {
    order: 1;
  }

  .editorial-block.reverse .editorial-text 
  {
    order: 2;
  }

  .editorial-text 
  {
    padding: 3rem 2.5rem;
  }
}

/* Mobile: vertical stacking */
@media (max-width: 640px) 
{
  .editorial-block,
  .editorial-block.reverse 
  {
    grid-template-columns: 1fr;
  }

  .editorial-visual 
  {
    min-height: 200px;
    padding: 2.5rem;
  }

  .editorial-visual svg 
  {
    width: min(160px, 55%);
  }

  .editorial-text 
  {
    padding: 2.5rem 1.5rem;
  }

  .page-hero 
  {
    padding: 3.5rem 1.5rem 3rem;
  }

  .page-cta 
  {
    padding: 3.5rem 1.5rem;
  }
}