/* ============================================================
   a-propos.css : Page À propos
   - L'équipe : trois portraits éditoriaux (photo, nom, titre, deux phrases, LinkedIn) ;
     le monogramme n'y est plus qu'un élément graphique (tracé en fond, quart en signature).
   - L'histoire : « cerne après cerne ». L'agence a grandi par cercles, comme un
     arbre : 2019, 2023, aujourd'hui.
   - Vision, réalisations, valeurs, CTA finale.
   Comportement : js/pages/a-propos.js
   Sublime Gestion Site Vitrine
   ============================================================ */

/* === SECTION 1 : L'ÉQUIPE (fond noir) ===
   Trois portraits éditoriaux, une carte par personne : photo, nom, titre, deux phrases, LinkedIn.
   Le monogramme n'est plus qu'un élément graphique : grand tracé en fond, quart en signature sur
   chaque photo, et le quatrième quart pour « votre projet » sous les cartes. */

.team {
  position: relative;
  overflow: hidden;
  padding: 150px 0 96px;
  background: var(--noir);
  color: #FFFFFF;
  isolation: isolate;
}

/* Halo chaud en haut de section, et grain de pellicule (même matière que la séquence de la home) */
.team::before,
.team::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.team::before {
  background: radial-gradient(ellipse 62% 46% at 62% 0%, rgba(var(--orange-rgb), 0.15), rgba(var(--orange-rgb), 0) 70%);
}

.team::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .55 0 0 0 0 .5 0 0 0 0 .44 0 0 0 .7 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.07;
}

.team__defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Le monogramme en grand tracé, derrière l'en-tête */
.team__mark {
  position: absolute;
  z-index: -1;
  top: 64px;
  right: max(-150px, calc(50% - 780px));
  width: min(640px, 72vw);
  height: auto;
  pointer-events: none;
}

.team__mark use { fill: none; stroke: rgba(var(--orange-rgb), 0.24); stroke-width: 5; }

.team__head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 60px); }
.team__eyebrow { display: block; margin-bottom: 22px; }

.team__h1 {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: #FFFFFF;
}

.team__h1 em {
  display: block;
  font-family: 'Instrument Sans', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--orange);
}

.team__sub {
  max-width: 600px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Les cartes --- */

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.member {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: color-mix(in srgb, var(--noir) 96.5%, #FFFFFF);   /* même teinte qu'un voile blanc à 3,5 %, mais opaque : le tracé du fond ne transparaît pas */
  transition: transform 0.45s var(--ease-spring), border-color 0.3s ease, box-shadow 0.45s ease;
}

.member:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--orange-rgb), 0.4);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.75);
}

.member__photo {
  position: relative;
  aspect-ratio: 1 / 1;   /* carré : la photo entière, sans rogner les côtés (en 4:5, le visage était trop zoomé) */
  overflow: hidden;
  background: var(--bg-dark-2);
}

.member__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  transition: transform 0.8s var(--ease-spring);
}

.member:hover .member__photo img { transform: scale(1.04); }

/* Fondu discret du bas de la photo vers la carte */
.member__photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(var(--noir-rgb), 0.5), rgba(var(--noir-rgb), 0));
  pointer-events: none;
}

/* Le quart du monogramme en signature, coin haut gauche */
.member__stamp {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--noir-rgb), 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.member__stamp svg { width: 24px; height: 24px; overflow: visible; }
.member__stamp use { fill: none; stroke: rgba(255, 255, 255, 0.38); stroke-width: 90; }
.member__stamp use.is-me { fill: var(--orange); stroke: none; }

.member__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px 24px;
}

.member__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.member__role { font-size: 13.5px; font-weight: 600; line-height: 1.45; color: var(--orange); }
.member__bio { margin: 4px 0 12px; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.7); }

.member__in,
.team__write,
.team__company {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, gap 0.25s var(--ease-spring);
}

.member__in {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.member__in svg,
.team__company svg { width: 15px; height: 15px; }
.member__in:hover { border-color: var(--orange); background: var(--orange); }

/* --- Sous les cartes : la quatrième place --- */

.team__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: clamp(24px, 3vw, 36px);
  padding: 16px 18px 16px 20px;
  border: 1px dashed rgba(var(--orange-rgb), 0.45);
  border-radius: 20px;
}

.team__free { display: flex; align-items: center; gap: 14px; font-size: 16px; color: rgba(255, 255, 255, 0.78); }
.team__key { flex-shrink: 0; width: 34px; height: 34px; overflow: visible; }
.team__key use { fill: none; stroke: rgba(255, 255, 255, 0.3); stroke-width: 80; }
.team__key use.is-free { stroke: var(--orange); stroke-width: 100; stroke-dasharray: 150 110; }

.team__free b {
  font-family: 'Instrument Sans', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: var(--orange);
}

.team__links { display: flex; flex-wrap: wrap; gap: 10px; }

.team__write { padding: 9px 16px; background: var(--orange); color: #FFFFFF; font-weight: 700; }
.team__write:hover { background: var(--orange-hover); gap: 11px; }

.team__company { padding: 9px 16px; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.06); color: #FFFFFF; }
.team__company svg { color: var(--orange); }
.team__company:hover { background: #FFFFFF; color: var(--noir); }

.member__in:focus-visible,
.team__write:focus-visible,
.team__company:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* Tablette : une carte par ligne, photo à gauche */
@media (max-width: 860px) {
  .team { padding: 128px 0 80px; }
  .team__mark { width: 460px; right: -170px; opacity: 0.7; }
  .team__grid { grid-template-columns: minmax(0, 1fr); }
  .member { flex-direction: row; }
  .member__photo { flex: 0 0 36%; aspect-ratio: auto; min-height: 250px; }
}

/* Téléphone : photo au-dessus, plus basse que haute */
@media (max-width: 520px) {
  .team__sub { font-size: 16.5px; }
  .member { flex-direction: column; }
  .member__photo { flex: none; aspect-ratio: 4 / 3; min-height: 0; }
  .member__photo img { object-position: 50% 0%; }   /* cadrage 4:3 calé en haut : la tête n'est jamais coupée */
  .team__foot { flex-direction: column; align-items: flex-start; }
}

/* === SECTION 2 : L'HISTOIRE : « CERNE APRÈS CERNE » (fond cream) === */

.rings {
  padding: 104px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.rings__head { max-width: 640px; margin-bottom: 44px; }
.rings__head .eyebrow { display: inline-flex; margin-bottom: 16px; }

.rings__h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.rings__h2 em {
  font-family: 'Instrument Sans', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--orange);
}

.rings__intro { margin-top: 14px; font-size: 17px; line-height: 1.55; color: var(--muted); }

.rings__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.rings__svg {
  display: block;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  overflow: visible;
}

/* Chaque cerne se trace (du cœur vers l'extérieur) quand la section arrive */
.rings__ring {
  fill: none;
  stroke: rgba(var(--noir-rgb), 0.22);
  stroke-width: 2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.3s cubic-bezier(0.65, 0, 0.35, 1), stroke 0.3s ease, stroke-width 0.3s ease;
}

.rings__svg.is-drawn .rings__ring { stroke-dashoffset: 0; }
.rings__g[data-ring="2"] .rings__ring { transition-delay: 0.35s, 0s, 0s; }
.rings__g[data-ring="3"] .rings__ring { transition-delay: 0.7s, 0s, 0s; }

.rings__g { transition: opacity 0.35s ease; }
.rings__svg:has(.is-lit) .rings__g:not(.is-lit) { opacity: 0.45; }
.rings__g.is-lit .rings__ring { stroke: var(--orange); stroke-width: 3.2; }

.rings__year-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  fill: var(--muted);
  paint-order: stroke;
  stroke: var(--cream);
  stroke-width: 10px;
  stroke-linejoin: round;
  transition: fill 0.3s ease;
}

.rings__g.is-lit .rings__year-label { fill: var(--orange); }

.rings__node { fill: var(--ink); }
.rings__node--o { fill: var(--orange); }
.rings__fam { fill: var(--cream); stroke: var(--orange); stroke-width: 2; }

.rings__label {
  font-family: 'Instrument Sans', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  fill: var(--ink-2);
}

.rings__arc {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  fill: var(--muted);
}

/* Les chapitres : chacun porte, en repère, les trois cernes avec le sien en orange */
.rings__list { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }

.rings__chapter {
  position: relative;
  padding: 18px 0 18px 48px;
}

.rings__chapter::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  --a: rgba(var(--noir-rgb), 0.22);
  --r1: var(--a);
  --r2: var(--a);
  --r3: var(--a);
  background: radial-gradient(circle, transparent 0 3.5px, var(--r1) 3.5px 5px, transparent 5px 8px, var(--r2) 8px 9.5px, transparent 9.5px 12.5px, var(--r3) 12.5px 14px, transparent 14px);
  transition: transform 0.4s var(--ease-spring);
}

.rings__chapter[data-ring="1"]::before { --r1: var(--orange); }
.rings__chapter[data-ring="2"]::before { --r2: var(--orange); }
.rings__chapter[data-ring="3"]::before { --r3: var(--orange); }
.rings__chapter.is-lit::before { transform: scale(1.18); }

.rings__year {
  display: block;
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--muted);
  transition: color 0.35s ease;
}

.rings__chapter.is-lit .rings__year { color: var(--orange); }

.rings__title { margin-top: 8px; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.rings__text { max-width: 500px; margin-top: 6px; font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.rings__text a { font-weight: 600; color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .rings { padding: 80px 0; }
  .rings__grid { grid-template-columns: minmax(0, 1fr); }
  .rings__svg { max-width: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  .member,
  .member__photo img { transition: none; }
  .rings__ring { transition: none; stroke-dashoffset: 0; }
}

/* === SECTION 3 : NOTRE VISION (fond noir) === */

.vision-section {
  padding: 96px 0;
  background: var(--noir);
}

.vision-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.vision__deco-line {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.vision__quote {
  margin: 0;
}

.vision__quote p {
  font-family: 'Instrument Sans', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--orange);
}

/* === SECTION 4 : RÉALISATIONS (fond cream) === */

.proof-section {
  padding: 96px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.proof-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.proof-section__header .eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
}

.proof__h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 16px;
}

.proof__h2 em {
  font-family: 'Instrument Sans', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: -0.025em;
}

.proof-section__intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.55;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1023px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-card--featured {
    grid-column: 1 / -1;
  }
}

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

.proof-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.proof-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.09);
  border-color: rgba(231, 92, 31, 0.22);
}

.proof-card--featured {
  padding: 0;
  overflow: hidden;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .proof-card--featured {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
  }
}

.proof-card--featured .proof-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proof-card--next {
  background: transparent;
  border: 1.5px dashed rgba(231, 92, 31, 0.35);
}

.proof-card--next:hover {
  background: rgba(231, 92, 31, 0.04);
}

.proof-card__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.proof-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}

.proof-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.proof-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.proof-card__tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
}

.proof-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s ease;
}

.proof-card__link:hover {
  gap: 12px;
}

/* Miniature stylisée du dashboard Gestion Auto-École (pur CSS) */
.proof-card__visual {
  background: var(--noir);
  padding: 32px 0 0 32px;
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  overflow: hidden;
}

.proof-mini {
  width: 100%;
  background: var(--bg-card);
  border-radius: 12px 0 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 0;
  border-bottom: 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: translateY(6px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-card--featured:hover .proof-mini {
  transform: translateY(0);
}

.proof-mini__bar {
  display: flex;
  gap: 5px;
  padding: 9px 12px;
  background: #F0EEEA;
  border-bottom: 1px solid var(--border);
}

.proof-mini__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D9D4C9;
}

.proof-mini__bar span:first-child { background: #FF5F57; }
.proof-mini__bar span:nth-child(2) { background: #FEBC2E; }
.proof-mini__bar span:nth-child(3) { background: #28C840; }

.proof-mini__body {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 190px;
}

.proof-mini__side {
  background: var(--bg-dark);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proof-mini__side i {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.proof-mini__side i.is-on {
  background: var(--orange);
}

.proof-mini__main {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg);
}

.proof-mini__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.proof-mini__kpis b {
  display: block;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.proof-mini__kpis b:first-child { color: var(--orange); }

.proof-mini__chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
}

.proof-mini__chart em {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(231, 92, 31, 0.35);
}

.proof-mini__chart em:last-child { background: var(--orange); }

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

.proof-mini__rows span {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
}

.proof-mini__rows span:nth-child(2) { width: 82%; }
.proof-mini__rows span:nth-child(3) { width: 64%; }

/* === SECTION 5 : NOS VALEURS (fond noir) === */

.valeurs-section {
  padding: 96px 0;
  background: var(--noir);
}

.valeurs-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.valeurs-section__header .eyebrow {
  display: block;
  margin-bottom: 16px;
}

.valeurs__h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.valeur-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.valeur-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
  border-color: rgba(231,92,31,0.25);
}

.valeur-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(231,92,31,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.valeur-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.015em;
  margin: 0;
}

.valeur-card__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin: 0;
}

.valeur-card__desc a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(231, 92, 31, 0.6);
}

.valeur-card__desc a:hover {
  color: #FFFFFF;
  text-decoration-color: var(--orange);
}

/* === SECTION 6 : CTA FINAL (fond bg clair) === */

.apropos-cta {
  padding: 96px 0;
  background: var(--bg);
}

.apropos-cta__box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.apropos-cta__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 20px;
}

.apropos-cta__h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

.apropos-cta__h2 em {
  font-family: 'Instrument Sans', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: -0.025em;
}

.apropos-cta__text {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.55;
}

.apropos-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .apropos-cta__actions {
    flex-direction: column;
  }

  .apropos-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
