/* ═══════════════════════════════════════════════════════════════════════════
   ALIMAJ THEME — Atelier
   ═══════════════════════════════════════════════════════════════════════════ */

.alimaj-atelier {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-24);
  align-items: center;
  padding: var(--space-32) var(--gutter);
  background: var(--af-dim);
}

/* ── VISUAL PANEL ── */
.alimaj-atelier__visual {
  aspect-ratio: 4 / 5;
  background: var(--af-ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alimaj-atelier__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.alimaj-atelier__visual::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--af-blush);
  z-index: 2;
}
.alimaj-atelier__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(245, 243, 239, 0.012) 0,
    rgba(245, 243, 239, 0.012) 1px,
    transparent 1px,
    transparent 40px
  );
  z-index: 1;
}
.alimaj-atelier__visual-placeholder {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--weight-light);
  font-size: 14px;
  color: rgba(245, 243, 239, 0.07);
  text-align: center;
  line-height: 2.4;
  padding: var(--space-12);
  position: relative;
  z-index: 3;
}

/* ── COPY PANEL ── */
.alimaj-atelier__copy .alimaj-label { margin-bottom: var(--space-4); }

.alimaj-atelier__heading {
  font-family: var(--font-serif);
  font-weight: var(--weight-light);
  font-size: clamp(2.5rem, 5vw, 4.125rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--af-smoke);
  margin-bottom: var(--space-6);
}

.alimaj-atelier__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--weight-light);
  font-size: var(--text-md);
  color: rgba(245, 243, 239, 0.62);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.alimaj-atelier__body {
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  line-height: 2;
  color: rgba(245, 243, 239, 0.42);
  margin-bottom: var(--space-4);
}

/* ── PROCESS STEPS ── */
.alimaj-atelier__process {
  margin: var(--space-10) 0;
  display: flex;
  flex-direction: column;
}

.alimaj-atelier__step {
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(245, 243, 239, 0.06);
}
.alimaj-atelier__step:last-child { border-bottom: none; }

.alimaj-atelier__step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--weight-light);
  font-size: 40px;
  color: rgba(200, 149, 42, 0.22);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}

.alimaj-atelier__step-text { padding-top: 4px; }
.alimaj-atelier__step-title {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.65);
  margin-bottom: 5px;
}
.alimaj-atelier__step-desc {
  font-size: 12px;
  font-weight: var(--weight-light);
  color: rgba(245, 243, 239, 0.35);
  line-height: 1.8;
}

/* ── CONTACT LINE ── */
.alimaj-atelier__contact {
  margin-top: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-thin);
  letter-spacing: 0.14em;
  color: rgba(245, 243, 239, 0.28);
}
.alimaj-atelier__contact a {
  color: var(--af-gold);
  transition: color var(--trans-base);
}
.alimaj-atelier__contact a:hover { color: var(--af-smoke); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .alimaj-atelier {
    grid-template-columns: 1fr;
    padding: var(--space-16) var(--gutter);
  }
  .alimaj-atelier__visual {
    aspect-ratio: 16 / 9;
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .alimaj-atelier { padding: var(--space-16) var(--gutter-sm); }
}
