/* ───── ATELIER hero ─────
   Framed (default) or full-bleed image, with a 2-col copy block below:
   serif headline left, body + CTAs right. Asymmetric padding — snug to
   the header above, generous breathing room before the next section. */

.at-hero {
  padding-block: clamp(20px, 2.4vw, 36px) clamp(48px, 7vw, 96px);
}

.at-hero__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-surface-2);
}
.at-hero__frame--bleed { width: 100%; }
.at-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.at-hero__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
}

.at-hero__copy {
  margin-top: clamp(40px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: end;
}
.at-hero__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--color-text);
}
.at-hero__h em {
  font-style: italic;
  color: var(--color-accent);
}
.at-hero__sub {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: var(--leading-loose);
  max-width: 46ch;
  margin: 0 0 28px;
}
.at-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 720px) {
  .at-hero__copy {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .at-hero__sub { max-width: none; }
}
