/* Editorial portrait hero: image and interface copy remain separate and accessible. */
.hero {
  position: relative;
  width: 100%;
  padding-top: 72px;
  background: #e8e3dc;
  color: #202020;
  overflow: hidden;
}

.hero__frame {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 0;
  isolation: isolate;
}

.hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  animation: heroFadeIn 1.1s ease-out 80ms forwards;
}

.hero__meta,
.hero__label,
.hero__copy,
.hero__seal {
  position: absolute;
  z-index: 1;
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out forwards;
}

.hero__meta {
  top: clamp(28px, 4vw, 64px);
  left: clamp(24px, 3.6vw, 72px);
  animation-delay: 0.42s;
}

.hero__role {
  margin: 0 0 30px;
  font-size: clamp(0.76rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__role::after {
  content: '';
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 14px;
  background: #e0567f;
}

.hero__location {
  margin: 0;
  color: #56534f;
  font-size: clamp(0.76rem, 0.95vw, 0.95rem);
  line-height: 1.45;
  text-transform: uppercase;
}

.hero__label {
  top: clamp(28px, 4vw, 64px);
  right: clamp(24px, 4.3vw, 86px);
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(0.76rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation-delay: 0.5s;
}

.hero__label-dot {
  width: 20px;
  height: 20px;
  border: 3px solid #e0567f;
  border-radius: 50%;
}

.hero__copy {
  left: clamp(24px, 3.6vw, 72px);
  bottom: clamp(28px, 5vw, 76px);
  max-width: min(360px, 34vw);
  animation-delay: 0.58s;
}

.hero__copy h1 {
  margin: 0 0 16px;
  font-family: 'Archivo Black', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #202020;
  text-transform: uppercase;
}

.hero__copy h1 em {
  color: #e0567f;
  font-style: normal;
}

.hero__copy p {
  margin: 0 0 22px;
  color: #4e4b47;
  font-size: clamp(0.82rem, 1vw, 1rem);
  line-height: 1.5;
}

.hero__copy a {
  min-width: 248px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 24px;
  border: 1.5px solid #e0567f;
  color: #202020;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.hero__copy a:hover { color: #fff; background: #e0567f; }
.hero__copy a:focus-visible { outline: 3px solid #202020; outline-offset: 4px; }
.hero__copy a svg { width: 15px; height: 15px; color: #e0567f; }
.hero__copy a:hover svg { color: currentColor; }

.hero__seal {
  right: clamp(24px, 4.1vw, 82px);
  bottom: clamp(24px, 3.5vw, 56px);
  width: clamp(108px, 10vw, 156px);
  color: #e0567f;
  animation-delay: 0.66s;
}

.hero__seal svg { display: block; width: 100%; height: auto; overflow: visible; }
.hero__seal text { fill: currentColor; font-size: 10.5px; font-weight: 700; letter-spacing: 2px; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .hero { padding-top: 62px; }
  .hero__frame { min-height: 0; }
  .hero__img { object-position: center; }
  .hero__meta { top: 30px; }
  .hero__label { top: 30px; gap: 10px; }
  .hero__copy {
    right: 22px;
    bottom: 24px;
    max-width: none;
    padding: 22px;
    background: rgba(235, 231, 225, 0.88);
    backdrop-filter: blur(8px);
  }
  .hero__copy a { min-width: 0; width: 100%; }
  .hero__seal { display: none; }
}

@media (max-width: 560px) {
  .hero__frame {
    min-height: 0;
    aspect-ratio: auto;
    overflow: visible;
  }

  .hero__img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
  }

  .hero__meta,
  .hero__label,
  .hero__seal { display: none; }

  .hero__copy {
    position: relative;
    inset: auto;
    max-width: none;
    margin: 0;
    padding: 26px 22px 34px;
    background: #e8e3dc;
    backdrop-filter: none;
  }

  .hero__copy h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__img,
  .hero__meta,
  .hero__label,
  .hero__copy,
  .hero__seal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
