:root{
  --bg:#f7f4ef;
  --card:#ffffff;
  --ink:#2a1b13;         /* brun profond */
  --muted:#5b4a3f;
  --accent:#b78c46;      /* or brun */
  --accent-strong:#8a6a32;
  --line:#e6ddd2;
  --shadow:0 24px 70px rgba(23,14,7,.10);
  --radius:18px;
  --space-1:6px;
  --space-2:10px;
  --space-3:14px;
  --space-4:20px;
  --space-5:28px;
  --space-6:36px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Manrope', ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.7;
  letter-spacing:0.1px;
}

a{color:var(--accent-strong); text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:1160px; margin:0 auto; padding:0 18px}
.nav{
  position:sticky; top:0; z-index:60;
  background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.55)), url('assets/juste%20fond%20.png') center/cover no-repeat;
  border-bottom:1px solid transparent;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}
.promo-bar{
  background:var(--bg);
  color:var(--ink);
  border-bottom:1px solid var(--line);
  font-size:14px;
  padding:10px 18px;
}
.promo-inner{
  max-width:1160px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  text-align:center;
}
.promo-text{flex:1; color:#1f1b18; font-weight:600; line-height:1.4;}
.promo-btn{padding:8px 16px; white-space:nowrap;}
@media (max-width:720px){
  .promo-inner{flex-direction:column;}
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:16px 0;
  position:relative;
}
.brand{
  font-family:'Playfair Display', serif;
  font-weight:800;
  letter-spacing:0.4px;
  display:flex; align-items:center; gap:8px;
  color:var(--ink);
  font-size:22px;
}
.brand span{color:var(--accent-strong)}
.links{
  display:flex;
  flex:1;
  justify-content:center;
  gap:22px;
  align-items:center;
}
.nav .links a{
  color:#fff;
  font-weight:700;
  font-size:17px;
  letter-spacing:0.2px;
}
.nav .links a:hover{
  text-decoration:none;
  color:var(--accent-strong);
}
.brand{color:var(--ink);}
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
}
.nav-brand{
  position:absolute;
  left:18px;
  top:60%;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--ink);
  text-decoration:none;
}
.nav-brand img{
  height:160px;
  width:auto;
  display:block;
  background:transparent;
  padding:0;
  border-radius:0;
  box-shadow:none;
  mix-blend-mode:multiply;
}
.hero-space .nav-brand{color:#fff;}
.nav-brand span{color:var(--accent-strong);}
.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,0.7);
  color:#fff;
  border-radius:12px;
  padding:8px 10px;
}
.nav-toggle:focus-visible{
  outline:3px solid rgba(183,140,70,.5);
  outline-offset:3px;
}
.light-nav .nav{
  background: var(--bg);
  border-bottom:1px solid var(--line);
  box-shadow:none;
}
.light-nav .nav .links a{
  color:var(--ink);
}
.light-nav .nav .links a:hover{
  color:var(--accent-strong);
}
.light-nav .nav-toggle{
  border:1px solid var(--line);
  color:var(--ink);
}
.light-nav .nav-brand img{
  mix-blend-mode:normal;
}
@media (max-width:720px){
  .links{display:none; width:100%;}
  .nav-inner{flex-wrap:wrap;}
  .nav-actions{
    position:static;
    transform:none;
    width:100%;
    justify-content:space-between;
  }
  .nav-toggle{display:inline-flex; justify-self:end;}
  .nav.open .links{display:flex; flex-direction:column; align-items:center; padding:10px 0;}
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 16px; border-radius:999px; font-weight:800;
  background:linear-gradient(120deg, rgba(183,140,70,.96), rgba(183,140,70,.82));
  color:#fff; border:0;
  box-shadow: var(--shadow);
  transition:transform .12s ease, box-shadow .12s ease;
}
.btn:hover{transform:translateY(-1px); box-shadow:0 20px 50px rgba(23,14,7,.16)}
.btn:focus-visible{outline:3px solid rgba(183,140,70,.5); outline-offset:3px}
.btn.ghost{
  background:#fff; color:var(--ink);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn.text{
  box-shadow:none;
  background:transparent;
  color:var(--accent-strong);
  padding:0;
}

header{padding:0 0 46px}
.banner-bleed{
  width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  overflow:hidden;
  background:#fff;
}
.banner-bleed img{
  width:100%;
  height:620px;
  object-fit:cover;
  display:block;
}
.banner-bleed video{
  width:100%;
  height:620px;
  object-fit:cover;
  display:block;
}
.star-hero{
  position:relative;
  background:radial-gradient(circle at 30% 20%, rgba(255,255,255,0.05), transparent 35%), #06070d;
  min-height:620px;
  overflow:hidden;
}
.star-hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.home-hero-text{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  color:#fff;
  padding:20px;
  width:100%;
  height:100%;
  transform:translateY(0);
}
.home-hero-kicker{
  letter-spacing:0.28em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,0.78);
}
.home-hero-title{
  margin:0;
  font-family:'Playfair Display', serif;
  letter-spacing:0.30em;
  font-size:72px;
  text-shadow:0 12px 32px rgba(0,0,0,0.45);
  padding:8px 20px;
}
.home-hero-sub{
  margin:0;
  font-size:20px;
  color:rgba(255,255,255,0.88);
  letter-spacing:0.18em;
  text-transform:uppercase;
}
.home-hero-tagline{
  margin:4px 0 0 0;
  font-size:15px;
  color:rgba(255,255,255,0.82);
  letter-spacing:0.05em;
}
.slow-appear{
  opacity:0;
  animation:fadeInSlow 4s ease forwards;
  animation-delay:0s;
}
@keyframes fadeInSlow{
  from{opacity:0; transform:translateY(12px);}
  to{opacity:1; transform:translateY(0);}
}
.approach-space{
  padding:70px 20px;
  background:linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/juste%20fond%20.png') center/cover no-repeat;
  color:#fff;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  width:100vw;
  box-sizing:border-box;
}
.approach-inner{
  max-width:1200px;
  width:100%;
  margin:0 auto;
  text-align:center;
  display:grid;
  gap:22px;
}
.approach-inner h3{
  margin:0;
  font-size:22px;
  letter-spacing:0.35em;
  text-transform:uppercase;
}
.approach-planets{
  display:flex;
  justify-content:space-evenly;
  gap:30px;
  flex-wrap:wrap;
}
.profile-carousel{
  background:#ffffff;
  padding:80px 20px;
}
.profile-carousel h2{
  margin:0;
  text-align:center;
  font-family:'Playfair Display', serif;
  letter-spacing:0.12em;
  font-size:36px;
  text-transform:uppercase;
  position:relative;
  display:block;
}
.carousel-track{
  margin-top:22px;
  display:flex;
  flex-wrap:nowrap;
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
  -webkit-overflow-scrolling:touch;
}
.profile-card{
  background:#fff;
  border:1px solid #e6ddcf;
  border-radius:12px;
  box-shadow:0 12px 30px rgba(28,18,10,0.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  text-align:left;
  min-width:320px;
  flex:0 0 340px;
  scroll-snap-align:start;
}
.profile-card img{
  width:100%;
  height:340px;
  object-fit:cover;
  object-position:center 0%;
  display:block;
}
.profile-card.henri-card img{
  object-position:center 15%;
}
.profile-body{
  padding:14px 16px 16px;
}
.profile-body h3{
  margin:0 0 8px 0;
  font-size:18px;
  color:var(--ink);
}
.profile-body p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}
.comet{
  align-self:center;
  width:140px;
  height:3px;
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
  position:relative;
  border-radius:999px;
  box-shadow:0 0 18px rgba(255,255,255,0.35);
}
.comet::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:10px;
  height:10px;
  border-top:2px solid rgba(255,255,255,0.85);
  border-right:2px solid rgba(255,255,255,0.85);
  transform:translateY(-50%) rotate(45deg);
}
.planet{
  position:relative;
  width:180px;
  height:180px;
  border-radius:50%;
  background:
    radial-gradient(70% 70% at 30% 30%, rgba(255,255,255,0.28), rgba(255,255,255,0.02)),
    radial-gradient(circle at 70% 70%, rgba(183,140,70,0.35), rgba(13,13,20,0.9));
  border:2px solid rgba(255,255,255,0.5);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.35),
    0 0 30px rgba(183,140,70,0.18);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:16px;
  text-align:center;
}
.planet::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 0 22px rgba(255,255,255,0.15);
}
.planet strong{
  font-size:18px;
  margin-bottom:6px;
  color:#fff;
}
.planet span{
  font-size:14px;
  line-height:1.4;
  color:rgba(255,255,255,0.88);
}
.banner-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  background:linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.25));
  padding:20px;
}
.banner-overlay .banner-overlay-inner{
  max-width:900px;
  display:grid;
  gap:12px;
}
.banner-overlay h2{
  margin:0;
  font-size:28px;
  letter-spacing:0.2px;
}
.banner-overlay .domains{
  display:grid;
  grid-template-columns:repeat(6, minmax(0,1fr));
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
  justify-items:center;
  align-items:stretch;
}
.banner-overlay .domains span{
  padding:8px 12px;
  border:1px solid rgba(255,255,255,0.4);
  border-radius:999px;
  background:rgba(255,255,255,0.45);
  color:#fff;
  font-weight:700;
  letter-spacing:0.12px;
  font-size:14px;
  text-align:center;
  width:100%;
  max-width:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
}
@media (max-width:900px){
  .banner-bleed img{height:420px;}
  .banner-bleed video{height:420px;}
}

.hero-video {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-video-content h1 {
  font-size: 60px;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.hero-video-content p {
  font-size: 16px;
  opacity: 0.9;
}

.hero-video {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo {
  max-width: 260px;
  width: 100%;
  margin-bottom: 16px;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

.hero-video {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.hero-logo-text {
  font-size: 64px;
  letter-spacing: 0.25em;
  margin: 0;
}

.hero-subtitle {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.15em;
  opacity: 0.85;
}
.hero-wrap{
  padding:72px 0 0;
}
.hero-space{
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  width:100vw;
  padding:80px 20px 40px;
  background:linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.55)), url('assets/juste%20fond%20.png') center/cover no-repeat;
  color:#fff;
  box-sizing:border-box;
}
.hero-simple{
  max-width:1100px;
  display:flex;
  flex-direction:column;
  gap:18px;
  margin:0 auto;
  padding:64px 18px;
  text-align:center;
}
.hero-sub{
  margin-top:4px;
  line-height:1.6;
}
.hero-title{
  text-align:center;
  margin:18px auto 12px;
  max-width:960px;
  white-space:normal;
  font-size:clamp(30px, 3vw, 48px);
  line-height:1.1;
  letter-spacing:-0.015em;
  position:relative;
  display:block;
  font-family:'Playfair Display', serif;
  font-weight:700;
  color:var(--ink);
  padding:0 6px;
}
.hero-title::after{
  content:"";
  display:block;
  width:70px;
  height:2px;
  background:var(--accent-strong);
  border-radius:999px;
  margin:12px auto 0 auto;
}
.hero-space .hero-title{
  color:#fff;
}
.hero-space .hero-title::after{
  background:rgba(255,255,255,0.8);
}
.hero-space .hero-simple{
  color:#fff;
}
.hero-lead.emphasis{
  margin-top:0;
  font-size:18px;
  line-height:1.6;
  color:var(--ink);
  padding:6px 0 0;
  display:inline-block;
  font-weight:600;
}
.hero-lead{max-width:760px; margin:0 auto;}
.hero-text{max-width:760px; margin:0 auto;}
.hero-lead{max-width:760px; margin:0 auto;}
.hero-text{max-width:760px; margin:0 auto;}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:8px 0 0 0;
  justify-content:center;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:12px;
  justify-content:center;
}
.btn-wide{
  padding:14px 22px;
  font-weight:800;
  letter-spacing:0.1px;
}
.hero-link{
  color:var(--accent-strong);
  font-weight:700;
}
.hero-flow{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  gap:14px;
  margin-top:16px;
  position:relative;
  align-items:stretch;
}
.hero-flow .card{
  position:relative;
  text-align:left;
  padding:18px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  box-shadow:0 12px 30px rgba(28,18,10,.08);
}
.hero-flow .card strong{font-size:16px;}
.hero-flow .card .muted{font-size:14px;}
.step-arrow{
  align-self:center;
  justify-self:center;
  position:relative;
  width:46px;
  height:46px;
}
.step-arrow::before{
  content:"";
  position:absolute;
  top:50%;
  left:10%;
  right:10%;
  height:2px;
  background:var(--accent-strong);
  transform:translateY(-50%) rotate(8deg);
  border-radius:999px;
  opacity:0.8;
}
.step-arrow::after{
  content:"";
  position:absolute;
  top:50%;
  right:6px;
  width:10px;
  height:10px;
  border-top:2px solid var(--accent-strong);
  border-right:2px solid var(--accent-strong);
  transform:translateY(-50%) rotate(45deg);
  opacity:0.9;
}
@media (max-width:900px){
  .hero-flow{
    grid-template-columns:1fr;
  }
  .step-arrow{display:none;}
}
.balance-mark{width:58px; height:auto;}
@media (max-width:600px){.balance-mark{width:52px;}}
.kicker{color:var(--muted); font-weight:700; letter-spacing:.35px; text-transform:uppercase; font-size:13px}
h1{font-family:'Playfair Display', serif; font-size:46px; margin:10px 0 12px; letter-spacing:.2px; line-height:1.12}
h1 span{color:var(--accent-strong)}
.lead{max-width:78ch; color:var(--muted); margin:0 0 22px; font-size:17px}

section{padding:42px 0}
.section-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:16px}
.section-head h2{
  font-family:'Playfair Display', serif;
  font-size:28px; margin:0; letter-spacing:.2px;
}
.section-note{color:var(--muted); font-size:13px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:14px}
@media (max-width:900px){
  h1{font-size:36px}
  .hero{grid-template-columns:1fr}
  .hero-media{min-height:240px}
  .grid3,.grid2{grid-template-columns:1fr}
  .links{width:100%}
}

.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
  box-shadow: 0 16px 40px rgba(28,18,10,.08);
}
.article-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:20px;
  box-shadow:0 12px 30px rgba(28,18,10,.06);
  display:flex;
  gap:10px;
  flex-direction:column;
  align-items:stretch;
  text-align:left;
}
.article-card a{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.article-card .article-image{
  width:100%;
  aspect-ratio:4/3;
  background:linear-gradient(135deg, rgba(183,140,70,.18), rgba(183,140,70,.08));
  border:1px dashed rgba(183,140,70,.35);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  font-weight:700;
  letter-spacing:0.2px;
}
.article-card h3{
  margin:0;
  font-size:20px;
  color:var(--ink);
}
.article-card .article-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:8px;
}
.article-card .article-date{
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
  font-weight:700;
}
.article-card .article-excerpt{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
  min-height:72px; /* 3 lignes environ */
}
.article-card a:hover .article-image{
  border-style:solid;
}
.article-card a:hover h3{
  color:var(--accent-strong);
}
.muted{color:var(--muted); font-size:15px}
.tagrow{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 0}
.tag{
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}
ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.small{font-size:13px; color:var(--muted)}
.hr{height:1px; background:var(--line); border:0; margin:0}

label{display:block; margin:10px 0}
input, textarea, select{
  width:100%;
  margin-top:6px;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: #fff;
  color:var(--ink);
  outline:none;
  font-family:inherit;
  font-size:15px;
  transition:border-color .12s ease, box-shadow .12s ease;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(183,140,70,.7);
  box-shadow:0 0 0 4px rgba(183,140,70,.16);
}

.footer{
  margin-top:30px;
  padding:32px 0 36px;
  background:#0f0f0f;
  color:#f8f5ef;
  border-top:1px solid rgba(255,255,255,0.06);
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  align-items:flex-start;
}
.footer-logo{
  width:160px;
  filter:brightness(0) invert(1);
  display:block;
  margin-bottom:10px;
}
.footer h4{
  margin:0 0 8px 0;
  font-size:14px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.footer a{
  color:#f8f5ef;
  text-decoration:none;
}
.footer a:hover{text-decoration:underline;}
.footer small, .footer .small{color:rgba(248,245,239,0.8);}
.footer-bottom{
  margin-top:16px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  color:rgba(248,245,239,0.85);
  font-size:13px;
}

/* badge premium */
.badge{
  display:inline-flex; gap:8px; align-items:center;
  border:1px solid rgba(183,140,70,.45);
  background:rgba(183,140,70,.10);
  color:var(--ink);
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
}

.accent-panel{
  background: linear-gradient(140deg, rgba(183,140,70,.14), rgba(255,255,255,.8));
  border:1px solid rgba(183,140,70,.24);
}
.pill-row{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
.pill{padding:8px 12px; border-radius:999px; border:1px solid var(--line); color:var(--muted); font-weight:600; font-size:13px; background:#fff}

.cta-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.hero-meta{display:grid; grid-template-columns:repeat(auto-fit, minmax(160px,1fr)); gap:10px; margin-top:12px}
.meta-item{padding:12px 14px; border:1px solid var(--line); border-radius:12px; background:#fff; color:var(--muted); font-size:14px}
.meta-item strong{color:var(--ink); display:block; margin-bottom:4px; font-size:15px}

.section-slab{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:20px; box-shadow:0 16px 40px rgba(28,18,10,.08)}

.cover{
  width:100%;
  height:260px;
  border-radius:18px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.10);
}
.embed-card{
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(28,18,10,.08);
  padding:16px;
  background:#fff;
}
.embed-iframe{
  width:100%;
  min-height:760px;
  border:0;
  border-radius:12px;
  overflow:hidden;
}
@media (max-width:900px){
  .embed-iframe{min-height:900px;}
}
.henri-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:18px;
}
.henri-photo{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#fff;
}
.henri-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.badges-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.badge-soft{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
@media (max-width:900px){
  .henri-grid{grid-template-columns:1fr; gap:12px;}
}
.hero-banner{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  display:block;
}

.hero-portrait{
  width:140px;
  height:140px;
  object-fit:cover;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.15);
  margin-top:12px;
}
.intro-alt{
  margin-top: 12px;
  font-size: 14px;
}
.intro-alt a{
  color: var(--link);
  text-decoration: none;
}
.intro-alt a:hover{
  text-decoration: underline;
}
/* ===== HERO FLOW (nouveau) ===== */
.hero-copy{
  max-width: 760px;
}

.hero-eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-eyebrow .balance-mark{
  width:18px;
  height:18px;
  opacity:.9;
}

.hero-copy h1{
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

.hero-copy .lead{
  margin: 0 0 18px;
  max-width: 62ch;
  line-height: 1.65;
}

.hero-flow{
  display:flex;
  align-items:stretch;
  gap: 14px;
  margin: 18px 0 18px;
  flex-wrap: wrap;
}

.flow-step{
  flex: 1 1 220px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: var(--shadow);
}

.flow-title{
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.flow-step p{
  margin:0;
  color: var(--muted);
  line-height:1.55;
}

.flow-arrow{
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(0,0,0,.35);
  font-size: 22px;
  font-weight: 800;
  padding: 0 2px;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.hero-link{
  color: var(--link);
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
}

.hero-link:hover{
  text-decoration: underline;
}

.hero-proof{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.35);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 720px){
  .flow-arrow{ display:none; }
}

.hero-title {
  text-align:center;
  font-family:'Playfair Display', serif;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-size:clamp(30px, 3vw, 44px);
  line-height:1.12;
  max-width:1100px;
  margin: 10px auto 20px auto;
  color:var(--ink);
  padding:8px 18px;
  display:inline-block;
  background:transparent;
  position:relative;
}
.hero-title::before{
  content:"";
  position:absolute;
  inset:-18px -28px;
  border-radius:20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0) 58%, rgba(0,0,0,0.25) 78%, rgba(0,0,0,0.45) 100%);
  pointer-events:none;
  z-index:-1;
}

.cta-equal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  min-width: 240px;
  font-size: 16px;
  border-radius: 999px;
}

.cta-equal {
  padding: 18px 40px;
  min-width: 260px;
  font-size: 16px;
  border-radius: 999px;
  text-align: center;
}

.cta-outline {
  background: transparent;
  border: 1.5px solid #3b2a1a;
  color: #3b2a1a;
}

.context-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
}

.context-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background-color: #c9a14a;
  opacity: 0.6;
}

.step {
  position: relative;
  background: #ffffff;
  z-index: 1;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.arrow {
  display: none;
}
