/* Atelier & sur-mesure — composition éditoriale moderne. */
.ba-workshop {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 10%, rgba(249,115,22,.08), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.ba-workshop::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -280px;
  bottom: -260px;
  border: 70px solid rgba(15,23,42,.025);
  border-radius: 50%;
  pointer-events: none;
}

.ba-workshop__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.ba-workshop__content {
  position: relative;
  padding: 38px 0;
}

.ba-workshop__content::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: linear-gradient(transparent, #fed7aa 18%, #fdba74 82%, transparent);
}

.ba-workshop__content .ba-section__label {
  padding: 7px 12px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff7ed;
  letter-spacing: .08em;
}

.ba-workshop__content .ba-section__title {
  max-width: 500px;
  margin: 8px 0 20px;
  font-size: clamp(32px, 3.25vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.ba-workshop__lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: #526175;
  font-size: 17px;
  line-height: 1.75;
}

.ba-workshop__process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 28px;
}

.ba-workshop__process-item {
  min-width: 0;
  padding: 13px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 8px 22px rgba(15,23,42,.045);
}

.ba-workshop__process-item span {
  display: block;
  margin-bottom: 4px;
  color: #ea580c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.ba-workshop__process-item strong {
  display: block;
  overflow: hidden;
  color: #0f172a;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.ba-workshop blockquote {
  position: relative;
  margin: 0 0 28px;
  padding: 20px 22px 20px 52px;
  border: 0;
  border-radius: 16px;
  background: #0f172a;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  box-shadow: 0 16px 34px rgba(15,23,42,.13);
}

.ba-workshop blockquote::before {
  content: "“";
  position: absolute;
  left: 17px;
  top: 6px;
  color: #fb923c;
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.ba-workshop__products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  border: 0;
}

.ba-workshop__products li {
  position: relative;
  width: auto;
  padding: 9px 12px 9px 30px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 650;
  box-shadow: 0 5px 14px rgba(15,23,42,.035);
}

.ba-workshop__products li::before {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 50%;
  color: #ea580c;
  font-size: 12px;
  font-weight: 900;
  transform: translateY(-50%);
}

.ba-workshop__visual {
  position: relative;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  background: #0f172a;
  box-shadow: 0 30px 70px rgba(15,23,42,.2), 0 8px 24px rgba(15,23,42,.12);
}

.ba-workshop__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 28px -24px -24px 42px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(249,115,22,.18), rgba(249,115,22,.02));
  filter: blur(2px);
}

.ba-workshop__visual-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 5px 14px;
  color: #e2e8f0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ba-workshop__visual-heading span:last-child { color: #fb923c; }

.ba-workshop__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(170px, .78fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  height: clamp(470px, 48vw, 610px);
}

.ba-workshop__image,
.ba-workshop__image--wide {
  position: relative;
  min-width: 0;
  height: auto;
  overflow: hidden;
  grid-column: auto;
  border-radius: 18px;
  background: #1e293b;
  aspect-ratio: auto;
  isolation: isolate;
}

.ba-workshop__image--main { grid-row: 1 / -1; }

.ba-workshop__image::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2,6,23,.78) 100%);
  pointer-events: none;
}

.ba-workshop__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.ba-workshop__image--main img { object-position: center; }

.ba-workshop__image:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.ba-workshop__image figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 16px;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  background: transparent;
  color: #fff;
}

.ba-workshop__image figcaption span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(15,23,42,.55);
  color: #fdba74;
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.ba-workshop__image figcaption strong {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.ba-workshop__image--main figcaption { left: 24px; bottom: 24px; }
.ba-workshop__image--main figcaption strong { font-size: 17px; }

@media (max-width: 1100px) {
  .ba-workshop__grid { grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); gap: 36px; }
  .ba-workshop__gallery { grid-template-columns: minmax(0, 1.45fr) minmax(145px, .75fr); height: 500px; }
  .ba-workshop__process { grid-template-columns: 1fr; }
  .ba-workshop__process-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; }
  .ba-workshop__process-item span { margin: 0; }
}

@media (max-width: 900px) {
  .ba-workshop__grid { grid-template-columns: 1fr; gap: 38px; }
  .ba-workshop__content { max-width: 720px; padding: 0; }
  .ba-workshop__content::before { display: none; }
  .ba-workshop__process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ba-workshop__process-item { display: block; padding: 13px 10px; }
  .ba-workshop__process-item span { margin-bottom: 4px; }
  .ba-workshop__gallery { height: min(72vw, 590px); }
}

@media (max-width: 640px) {
  .ba-workshop__content .ba-section__title { font-size: 32px; }
  .ba-workshop__process { gap: 6px; }
  .ba-workshop__process-item strong { font-size: 11px; }
  .ba-workshop blockquote { padding: 18px 17px 18px 45px; font-size: 14px; }
  .ba-workshop__visual { padding: 10px; border-radius: 22px; }
  .ba-workshop__visual::before { inset: 20px -10px -14px 24px; }
  .ba-workshop__visual-heading { padding: 4px 4px 10px; font-size: 9px; }
  .ba-workshop__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    height: auto;
    gap: 8px;
  }
  .ba-workshop__image { aspect-ratio: 1 / .82; border-radius: 14px; }
  .ba-workshop__image--main { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4 / 3; }
  .ba-workshop__image figcaption { left: 11px; right: 8px; bottom: 11px; gap: 7px; }
  .ba-workshop__image figcaption span { width: 24px; height: 24px; flex-basis: 24px; font-size: 8px; }
  .ba-workshop__image figcaption strong { font-size: 10px; }
  .ba-workshop__image--main figcaption { left: 16px; bottom: 15px; }
  .ba-workshop__image--main figcaption strong { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .ba-workshop__image img { transition: none; }
}
