/* ── HERO 2-COL ── */
.ateliers-hero {
  background: var(--night);
  padding: 140px 56px 96px;
  position: relative; overflow: hidden;
}
.ateliers-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 55% at 75% 25%, rgba(224,90,58,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 10% 85%, rgba(30,45,71,0.7) 0%, transparent 60%);
}
.ateliers-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
}
.ateliers-hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 460px; gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.ateliers-hero-inner > * { min-width: 0; }

.ateliers-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,90,58,0.13); border: 0.5px solid rgba(224,90,58,0.3);
  color: var(--coral); border-radius: 40px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; margin-bottom: 28px;
}
.ateliers-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

.ateliers-hero h1 {
  font-family: var(--serif); font-size: clamp(44px, 5vw, 68px);
  font-weight: 500; line-height: 1.1; color: white; margin-bottom: 24px; letter-spacing: -0.01em;
}
.ateliers-hero h1 em { font-style: italic; color: var(--coral); }
.ateliers-lead { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 500px; margin-bottom: 40px; }
.ateliers-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.ateliers-note { font-size: 12px; color: rgba(255,255,255,0.5); font-style: italic; }

/* Carte specs hero droite */
.hero-specs {
  background: var(--night-2, #162035); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl); overflow: hidden; display: block; width: 100%;
}
.specs-header { background: rgba(224,90,58,0.1); border-bottom: 0.5px solid rgba(224,90,58,0.15); padding: 18px 24px; }
.specs-header-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 4px; }
.specs-header-title { font-size: 15px; font-weight: 500; color: white; }
.specs-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.spec-row { display: flex; align-items: flex-start; gap: 14px; }
.spec-icon { width: 34px; height: 34px; border-radius: var(--r-sm); background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.spec-icon svg { width: 15px; height: 15px; color: var(--coral); }
.spec-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.spec-value { font-size: 13.5px; color: rgba(255,255,255,0.88); font-weight: 300; line-height: 1.35; }
.spec-value strong { font-weight: 500; color: white; }
.specs-divider { height: 0.5px; background: rgba(255,255,255,0.06); }
.specs-footer { padding: 16px 24px; background: rgba(255,255,255,0.03); border-top: 0.5px solid rgba(255,255,255,0.06); }
.specs-ideal { display: flex; flex-direction: column; gap: 6px; }
.specs-ideal-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); }
.specs-ideal-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.specs-tag { background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 40px; padding: 4px 12px; font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── SECTION EYEBROW (partagé) ── */
.at-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 16px;
}
.at-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--coral); display: block; }
.at-title {
  font-family: var(--serif); font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 500; line-height: 1.15; margin-bottom: 16px;
}
.at-title em { font-style: italic; color: var(--coral); }
.at-lead { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 540px; margin-bottom: 52px; }

/* ── QUAND ── */
.quand { background: var(--cream); padding: 96px 56px; }
.quand-inner { max-width: 1100px; margin: 0 auto; }
.quand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.quand-card {
  background: var(--white); border-radius: var(--r-xl); padding: 32px 28px;
  border: 0.5px solid rgba(26,31,46,0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.quand-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: rgba(224,90,58,0.18); }
.quand-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--coral), transparent); opacity: 0; transition: opacity 0.3s; }
.quand-card:hover::after { opacity: 1; }
.quand-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: rgba(224,90,58,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.quand-icon svg { width: 20px; height: 20px; color: var(--coral); }
.quand-title { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.quand-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.quand-examples { display: flex; flex-direction: column; gap: 5px; }
.quand-ex { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.quand-ex::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--coral); flex-shrink: 0; margin-top: 6px; opacity: 0.5; }

.quand-vs {
  background: var(--white); border-radius: var(--r-xl); padding: 32px 40px;
  border: 0.5px solid rgba(26,31,46,0.08);
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center;
}
.vs-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.vs-label--atelier { color: var(--coral); }
.vs-label--formation { color: var(--night, #0E1628); }
.vs-items { display: flex; flex-direction: column; gap: 10px; }
.vs-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text); line-height: 1.4; }
.vs-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.vs-dot--coral { background: var(--coral); }
.vs-dot--night { background: var(--night, #0E1628); opacity: 0.4; }
.vs-sep { width: 1px; background: rgba(26,31,46,0.1); align-self: stretch; }
.vs-sep-label { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--muted); text-align: center; }

/* ── FORMATS ── */
.formats-section { background: var(--night); padding: 96px 56px; }
.formats-inner { max-width: 1100px; margin: 0 auto; }
.formats-header { margin-bottom: 56px; }
.format-cards { display: flex; flex-direction: column; gap: 28px; }
.format-card {
  background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl); overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.format-card:hover { border-color: rgba(224,90,58,0.28); transform: translateY(-2px); }
.fc-grid { display: grid; grid-template-columns: 64px 1fr 280px; gap: 0; }
.fc-accent { background: rgba(224,90,58,0.12); display: flex; align-items: flex-start; justify-content: center; padding-top: 36px; }
.fc-accent-icon svg { width: 32px; height: 32px; color: var(--coral); opacity: 0.8; }
.fc-main { padding: 36px 36px 36px 28px; border-right: 0.5px solid rgba(255,255,255,0.06); }
.fc-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.fc-tag::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }
.fc-title { font-family: var(--serif); font-size: 26px; font-weight: 500; color: white; line-height: 1.2; margin-bottom: 12px; }
.fc-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.fc-how-label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.fc-steps { display: flex; flex-direction: column; gap: 8px; }
.fc-step { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.45; }
.fc-step-num { font-family: var(--serif); font-size: 14px; color: rgba(224,90,58,0.5); flex-shrink: 0; width: 16px; font-weight: 500; }
.fc-aside { padding: 36px 28px; display: flex; flex-direction: column; gap: 18px; }
.fc-aside-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.fc-aside-value { font-size: 13.5px; color: rgba(255,255,255,0.88); font-weight: 400; line-height: 1.4; }
.fc-aside-divider { height: 0.5px; background: rgba(255,255,255,0.07); }
.fc-aside-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.fc-pill { background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 40px; padding: 4px 10px; font-size: 11.5px; color: rgba(255,255,255,0.5); }
.fc-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--coral); color: white; padding: 10px 18px; border-radius: var(--r-sm); font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.fc-btn:hover { background: var(--coral-dark, #B8412A); }
.fc-btn-ghost { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: rgba(255,255,255,0.55); padding: 10px 18px; border-radius: var(--r-sm); border: 0.5px solid rgba(255,255,255,0.15); font-size: 13px; font-weight: 300; text-decoration: none; transition: color 0.2s, border-color 0.2s; }
.fc-btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.4); }

/* ── DÉROULEMENT ── */
.deroulement { background: #EDE8DF; padding: 96px 56px; }
.deroulement-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.derou-emphasis {
  background: white; border-left: 3px solid var(--coral);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 22px 28px; margin-top: 32px;
  font-family: var(--serif); font-size: 18px; font-style: italic;
  color: var(--text); line-height: 1.5;
}
.derou-timeline { display: flex; flex-direction: column; }
.dt-step { display: flex; gap: 20px; }
.dt-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 44px; }
.dt-dot { width: 44px; height: 44px; border-radius: 50%; background: white; border: 1.5px solid rgba(224,90,58,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.dt-dot svg { width: 17px; height: 17px; color: var(--coral); }
.dt-line { width: 1px; flex: 1; background: rgba(224,90,58,0.15); min-height: 20px; }
.dt-step:last-child .dt-line { display: none; }
.dt-content { flex: 1; padding-bottom: 32px; padding-top: 8px; }
.dt-step:last-child .dt-content { padding-bottom: 0; }
.dt-time { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }
.dt-title { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.dt-desc { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.6; }

/* ── CONTEXTES ── */
.contextes { background: var(--night); padding: 96px 56px; }
.contextes-inner { max-width: 1100px; margin: 0 auto; }
.contextes-header { margin-bottom: 56px; }
.contextes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ctx-card { background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.07); border-radius: var(--r-xl); padding: 32px 30px; transition: border-color 0.2s, transform 0.2s; }
.ctx-card:hover { border-color: rgba(224,90,58,0.22); transform: translateY(-2px); }
.ctx-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.ctx-tag::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }
.ctx-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: white; margin-bottom: 10px; line-height: 1.2; }
.ctx-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 20px; }
.ctx-details { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 0.5px solid rgba(255,255,255,0.07); }
.ctx-detail { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.4; }
.ctx-detail::before { content: ''; width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6' fill='%23E05A3A' opacity='.12'/%3E%3Cpath d='M4.5 7l2 2 3-3' stroke='%23E05A3A' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ── TÉMOIGNAGES ── */
.at-testi { background: var(--cream); padding: 96px 56px; }
.at-testi-inner { max-width: 1100px; margin: 0 auto; }
.at-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.at-testi-card { background: var(--white); border-radius: var(--r-xl); padding: 30px; border: 0.5px solid rgba(26,31,46,0.08); display: flex; flex-direction: column; gap: 16px; transition: border-color 0.2s, transform 0.2s; }
.at-testi-card:hover { border-color: rgba(224,90,58,0.18); transform: translateY(-3px); }
.at-testi-before { background: rgba(224,90,58,0.06); border-left: 2px solid rgba(224,90,58,0.28); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 10px 14px; }
.at-testi-before-label { font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); font-weight: 500; margin-bottom: 4px; }
.at-testi-before-text { font-size: 12.5px; color: var(--muted); font-style: italic; line-height: 1.5; }
.at-testi-quote { font-family: var(--serif); font-size: 17px; font-style: italic; color: var(--text); line-height: 1.55; flex: 1; }
.at-testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 0.5px solid rgba(26,31,46,0.08); }
.at-testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(224,90,58,0.1); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 14px; font-weight: 500; color: var(--coral); flex-shrink: 0; }
.at-testi-name { font-size: 13px; font-weight: 500; color: var(--text); }
.at-testi-role { font-size: 12px; font-weight: 300; color: var(--muted); }

/* ── CTA FINAL DOUBLE ── */
.at-cta-final { background: var(--coral); padding: 96px 56px; text-align: center; position: relative; overflow: hidden; }
.at-cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(0,0,0,0.18) 0%, transparent 70%); }
.at-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.at-cta-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.at-cta-title { font-family: var(--serif); font-size: clamp(38px, 5vw, 58px); font-weight: 500; color: white; line-height: 1.1; margin-bottom: 18px; }
.at-cta-lead { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 40px; }
.cta-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px; }
.cta-box { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r-xl); padding: 28px; text-align: left; text-decoration: none; color: white; transition: background 0.2s, border-color 0.2s, transform 0.2s; display: block; }
.cta-box:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.cta-box-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.cta-box-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: white; margin-bottom: 6px; }
.cta-box-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.5; margin-bottom: 14px; }
.cta-box-link { font-size: 13px; font-weight: 500; color: white; display: flex; align-items: center; gap: 6px; }
.at-cta-note { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .ateliers-hero-inner { grid-template-columns: 1fr 380px; gap: 48px; }
  .fc-grid { grid-template-columns: 64px 1fr 240px; }
}
@media (max-width: 1024px) {
  .ateliers-hero-inner { grid-template-columns: 1fr; }
  .hero-specs { max-width: 480px; }
  .deroulement-inner { grid-template-columns: 1fr; gap: 48px; }
  .fc-grid { grid-template-columns: 64px 1fr; }
  .fc-aside { display: none; }
  .ateliers-hero, .quand, .formats-section, .deroulement, .contextes, .at-testi, .at-cta-final { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  .quand-grid, .at-testi-grid, .contextes-grid { grid-template-columns: 1fr; }
  .quand-vs { grid-template-columns: 1fr; }
  .vs-sep { display: none; }
  .cta-dual { grid-template-columns: 1fr; }
  .fc-grid { grid-template-columns: 1fr; }
  .fc-accent { display: none; }
  .fc-main { padding: 28px; }
  .ateliers-hero, .quand, .formats-section, .deroulement, .contextes, .at-testi, .at-cta-final { padding-left: 24px; padding-right: 24px; }
}
