/* ── RESET & SCOPE ─────────────────────────────────────────── */
.ast-hp *, .ast-hp *::before, .ast-hp *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

/* ── VARIABLES ─────────────────────────────────────────────── */
.ast-hp {
  --rouge:     #c0392b;
  --rouge-dark:#962d22;
  --rouge-soft:#e8d5d2;
  --noir:      #1a1a1a;
  --ardoise:   #2c2c2c;
  --gris-fond: #f5f5f5;
  --gris-mid:  #888888;
  --gris-bord: #e0e0e0;
  --blanc:     #ffffff;
  --ivoire:    #faf8f6;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', 'Helvetica Neue', sans-serif;
  --max:       1100px;
  font-family: var(--sans);
  color: var(--noir);
  background: var(--blanc);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.ast-hp a { text-decoration: none; color: inherit; }
.ast-hp img { display: block; max-width: 100%; }

/* ── UTILITAIRES ───────────────────────────────────────────── */
.ast-eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 1rem;
  display: block;
}
.ast-rule {
  width: 40px; height: 2px;
  background: var(--rouge);
  margin: 1.2rem 0;
}
.ast-section {
  padding: 5rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   ① HERO — fond blanc, image droite, texte gauche
════════════════════════════════════════════════════════════ */
.ast-hero {
  background: var(--blanc);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gris-bord);
}

/* Bande rouge verticale décorative */
.ast-hero-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--rouge), transparent);
}

/* Image côté droit */
.ast-hero-bg {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background-image: url('https://astyrian.fr/wp-content/uploads/sites/8/2023/07/Gestionnaire-de-fortune-Paris-Neuilly-sur-seine-Astyrian-Patrimoine-top.jpg');
  background-size: cover;
  background-position: center;
}
/* Dégradé blanc → image pour la transition */
.ast-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--blanc) 0%, transparent 30%);
}

/* Overlay léger sur l'image pour lisibilité */
.ast-hero-overlay {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: rgba(255,255,255,.08);
}

.ast-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 72vh;
}

/* Colonne gauche */
.ast-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gris-mid);
  margin-bottom: 2rem;
}
.ast-hero-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--rouge);
}

/* line-height: 1.1 */
/* font-size: clamp(2.6rem, 5vw, 4.4rem); */
.ast-hero-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 4.4rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--noir);
  letter-spacing: -.01em;
  margin-bottom: 1.2rem;
}
.ast-hero-title em {
  font-style: italic;
  color: var(--rouge);
}

.ast-hero-sub {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gris-mid);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* CTA hero */
.ast-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: var(--rouge);
  color: var(--blanc);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid var(--rouge);
  transition: background .25s, color .25s;
}
.ast-btn-hero:hover {
  background: var(--rouge-dark);
  border-color: var(--rouge-dark);
  color: var(--blanc);
}
.ast-btn-hero svg { transition: transform .25s; }
.ast-btn-hero:hover svg { transform: translateX(4px); }

/* Colonne droite hero — stats + logos sur fond blanc */
.ast-hero-right {
  padding-left: 2.5rem;
  border-left: 1px solid var(--gris-bord);
}

.ast-hero-statement {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: #555;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.ast-hero-statement strong { color: var(--noir); font-weight: 400; }

/* Stats */
.ast-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.ast-stat {
  border-top: 2px solid var(--rouge-soft);
  padding-top: .9rem;
}
.ast-stat-num {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--rouge);
  line-height: 1;
  margin-bottom: .25rem;
}
.ast-stat-label {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gris-mid);
  line-height: 1.4;
}

/* Logos presse dans hero */
.ast-hero-press {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gris-bord);
}
.ast-hero-press-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gris-mid);
}
.ast-hero-press a {
  display: flex;
  align-items: center;
}
.ast-hero-press img {
  height: 22px;
  width: auto;
  opacity: .55;
  filter: grayscale(100%);
  transition: opacity .2s, filter .2s;
}
.ast-hero-press img:hover { opacity: .9; filter: grayscale(0%); }

/* ════════════════════════════════════════════════════════════
   ② MANIFESTE — fond ivoire clair
════════════════════════════════════════════════════════════ */
.ast-manifesto {
  background: var(--ivoire);
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid var(--gris-bord);
  border-bottom: 1px solid var(--gris-bord);
}
.ast-manifesto-inner { max-width: 760px; margin: 0 auto; }
.ast-manifesto-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--noir);
}
.ast-manifesto-text em { font-style: italic; color: var(--rouge); }
.ast-manifesto-rule {
  width: 40px; height: 2px;
  background: var(--rouge);
  margin: 1.5rem auto;
}
.ast-manifesto-sign {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gris-mid);
}

/* ════════════════════════════════════════════════════════════
   ③ POUR QUI
════════════════════════════════════════════════════════════ */
.ast-profiles { background: var(--blanc); }
.ast-profiles-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem 2.5rem;
}
.ast-profiles-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--noir);
  line-height: 1.2;
}
.ast-profiles-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.ast-profile-card {
  border: 1px solid var(--gris-bord);
  padding: 2.2rem;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.ast-profile-card:hover {
  border-color: var(--rouge);
  box-shadow: 0 4px 24px rgba(192,57,43,.08);
}
.ast-profile-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--rouge);
  opacity: 0;
  transition: opacity .2s;
}
.ast-profile-card:hover::before { opacity: 1; }
.ast-profile-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--rouge-soft);
  line-height: 1;
  margin-bottom: .8rem;
}
.ast-profile-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: .5rem;
}
.ast-profile-desc {
  font-size: .85rem;
  color: var(--gris-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.ast-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.ast-tag {
  font-size: .67rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--rouge);
  border: 1px solid rgba(192,57,43,.3);
  padding: 3px 8px;
  border-radius: 2px;
}

/* ════════════════════════════════════════════════════════════
   ④ DIFFÉRENCIANTS
════════════════════════════════════════════════════════════ */
.ast-diff { background: var(--gris-fond); }
.ast-diff-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}
.ast-diff-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--noir);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.ast-diff-heading em { font-style: italic; color: var(--rouge); }
.ast-diff-intro {
  font-size: .88rem;
  color: var(--gris-mid);
  line-height: 1.8;
}
.ast-diff-items { display: flex; flex-direction: column; gap: 0; }
.ast-diff-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--gris-bord);
  align-items: start;
  transition: padding-left .2s;
}
.ast-diff-item:last-child { border-bottom: none; }
.ast-diff-item:hover { padding-left: .4rem; }
.ast-diff-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(192,57,43,.2);
  line-height: 1;
}
.ast-diff-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: .35rem;
}
.ast-diff-text {
  font-size: .83rem;
  color: var(--gris-mid);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════
   ⑤ PRESSE & DISTINCTIONS
════════════════════════════════════════════════════════════ */
.ast-press { background: var(--blanc); }
.ast-press-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

/* Logos presse — grands et visibles */
.ast-press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem;
  border-top: 1px solid var(--gris-bord);
  border-bottom: 1px solid var(--gris-bord);
  background: var(--ivoire);
}
.ast-press-logos a {
  display: flex;
  align-items: center;
  transition: opacity .2s, transform .2s;
}
.ast-press-logos a:hover { opacity: .75; transform: translateY(-2px); }
.ast-press-logos img {
  height: 52px;      /* ← grand et lisible */
  width: auto;
  filter: grayscale(20%);
  opacity: .85;
}

/* Distinctions */
.ast-awards {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.ast-award {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.ast-award-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(192,57,43,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--blanc);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.ast-award-badge img { width: 42px; height: 42px; object-fit: contain; }
.ast-award-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--noir);
  line-height: 1.3;
}
.ast-award-sub {
  font-size: .7rem;
  color: var(--gris-mid);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* ════════════════════════════════════════════════════════════
   ⑥ PROCESSUS — fond gris clair
════════════════════════════════════════════════════════════ */
.ast-process { background: var(--gris-fond); }
.ast-process-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem 2.5rem;
  text-align: center;
}
.ast-process-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--noir);
  line-height: 1.2;
}
.ast-process-steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.ast-process-steps::before {
  content: '';
  position: absolute;
  top: 2.4rem;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(192,57,43,.4), transparent);
}
.ast-step {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--gris-bord);
}
.ast-step:last-child { border-right: none; }
.ast-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--rouge);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--rouge);
  background: var(--gris-fond);
  position: relative;
  z-index: 1;
}
.ast-step-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: .6rem;
}
.ast-step-desc {
  font-size: .82rem;
  color: var(--gris-mid);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════
   ⑦ ACTUALITÉS
════════════════════════════════════════════════════════════ */
.ast-news { background: var(--blanc); }
.ast-news-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.ast-news-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2.5rem;
}
.ast-news-top h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--noir);
}
.ast-news-top a {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rouge);
  font-family: var(--sans);
  transition: opacity .2s;
}
.ast-news-top a:hover { opacity: .7; }
.ast-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ast-news-item {
  border-top: 2px solid var(--gris-bord);
  padding-top: 1.2rem;
  transition: border-color .2s;
}
.ast-news-item:hover { border-color: var(--rouge); }
.ast-news-source {
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: .5rem;
  font-family: var(--sans);
}
.ast-news-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--noir);
  line-height: 1.45;
  margin-bottom: .5rem;
}
.ast-news-title a { transition: color .2s; }
.ast-news-title a:hover { color: var(--rouge); }
.ast-news-date { font-size: .7rem; color: var(--gris-mid); }

/* ════════════════════════════════════════════════════════════
   ⑧ CTA FINAL
════════════════════════════════════════════════════════════ */
.ast-final {
  background: var(--rouge);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.ast-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.ast-final::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 450px; height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: none;
}
.ast-final-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.ast-final-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--blanc);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.ast-final-title em { font-style: italic; opacity: .75; }
.ast-final-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.ast-btn-final {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: var(--blanc);
  color: var(--rouge);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  transition: background .2s, color .2s;
  margin-right: 1rem;
}
.ast-btn-final:hover {
  background: var(--noir);
  color: var(--blanc);
}
.ast-btn-final svg { transition: transform .2s; }
.ast-btn-final:hover svg { transform: translateX(4px); }
.ast-btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.8);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95rem 1.6rem;
  transition: border-color .2s, color .2s;
}
.ast-btn-ghost-white:hover {
  border-color: rgba(255,255,255,.8);
  color: var(--blanc);
}

/* ════════════════════════════════════════════════════════════
   ⑨ FORMULAIRE — fond blanc
════════════════════════════════════════════════════════════ */
.ast-contact {
  background: var(--blanc);
  padding: 5rem 2rem;
  border-top: 1px solid var(--gris-bord);
}
.ast-contact-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.ast-contact-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--noir);
  margin-bottom: .4rem;
}
.ast-contact-sub {
  font-size: .85rem;
  color: var(--gris-mid);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.ast-contact input[type="text"],
.ast-contact input[type="email"],
.ast-contact input[type="tel"],
.ast-contact textarea,
.ast-contact select {
  width: 100%;
  background: var(--ivoire);
  border: 1px solid var(--gris-bord);
  border-radius: 2px;
  padding: .85rem 1rem;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--noir);
  margin-bottom: .7rem;
  transition: border-color .2s;
}
.ast-contact input:focus,
.ast-contact textarea:focus {
  outline: none;
  border-color: var(--rouge);
}
.ast-contact input::placeholder,
.ast-contact textarea::placeholder {
  color: var(--gris-mid);
  font-style: italic;
  font-family: var(--serif);
}
.ast-contact input[type="submit"],
.ast-contact .wpcf7-submit {
  width: 100%;
  background: var(--rouge);
  border: none;
  color: var(--blanc);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 1rem;
  cursor: pointer;
  margin-top: .4rem;
  transition: background .2s;
}
.ast-contact input[type="submit"]:hover,
.ast-contact .wpcf7-submit:hover {
  background: var(--rouge-dark);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ast-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ast-hero-accent { display: none; }
  .ast-hero-right {
    padding-left: 0; border-left: none;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 2rem;
  }
  .ast-diff-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ast-profiles-grid { grid-template-columns: 1fr; }
  .ast-news-grid { grid-template-columns: 1fr; }
  .ast-process-steps { grid-template-columns: 1fr; }
  .ast-process-steps::before { display: none; }
  .ast-step { border-right: none; border-bottom: 1px solid var(--gris-bord); }
  .ast-step:last-child { border-bottom: none; }
  .ast-press-logos { gap: 1.5rem; }
  .ast-press-logos img { height: 36px; }
}
@media (max-width: 600px) {
  .ast-hero-stats { grid-template-columns: 1fr 1fr; }
  .ast-awards { gap: 2rem; flex-direction: column; align-items: flex-start; }
  .ast-btn-final, .ast-btn-ghost-white { width: 100%; justify-content: center; margin: .4rem 0; }
}
