.hero {
  min-height: auto;
  padding-block: clamp(3rem, 8vh, 5.5rem) clamp(1.75rem, 3vh, 2.25rem);
}

.hero__container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.5vw, 2.125rem);
}

/* Two-column grid */

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 4vw, 3.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 48%) minmax(0, 48%);
    gap: clamp(2rem, 4vw, 3.75rem);
    align-items: start;
  }
}

/* Content column */

.hero__content {
  display: flex;
  flex-direction: column;
  max-width: 620px;
}

@media (min-width: 960px) {
  .hero__content {
    max-width: none;
    padding-top: 0;
    margin-top: -0.125rem;
  }
}

.hero__overline {
  margin: 0 0 var(--space-lg);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Title */

.hero__title {
  margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
  font-family: var(--font-primary);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.hero__title-line {
  display: block;
  font-size: clamp(1.875rem, 4.2vw, 2.875rem);
  font-weight: 800;
  color: var(--color-text);
}

.hero__title-line--accent {
  color: var(--color-accent);
  white-space: nowrap;
}

@media (max-width: 959px) {
  .hero__title-line--accent {
    font-size: clamp(1.75rem, 7.5vw, 2.875rem);
    white-space: normal;
  }
}

.hero__description {
  margin: 0 0 var(--space-lg);
  max-width: 54ch;
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--color-text);
}

.hero__note {
  margin: 0 0 clamp(2rem, 3.5vw, 2.5rem);
  padding-left: var(--space-md);
  max-width: 52ch;
  font-size: clamp(0.9375rem, 1.4vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(21, 37, 51, 0.78);
  border-left: 2px solid var(--color-accent);
}

.hero__note-accent {
  font-weight: 600;
  color: var(--color-accent);
}

.hero__dates {
  margin-bottom: clamp(1.125rem, 2vw, 1.5rem);
}

.hero__dates-label {
  margin: 0 0 var(--space-sm);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
}

.hero__dates-list {
  margin: 0;
  font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(21, 37, 51, 0.82);
}

.hero__cta {
  align-self: flex-start;
}

/* Media column */

.hero__media {
  width: 100%;
}

@media (min-width: 960px) {
  .hero__media {
    align-self: start;
    padding-top: calc(0.6875rem * 1.6 + var(--space-lg) - 0.125rem);
  }
}

.hero__figure {
  margin: 0;
}

.hero__photo-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 5 / 6;
  max-height: clamp(360px, 56vh, 480px);
  border-radius: var(--radius-md);
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 38% center;
}

@media (max-width: 959px) {
  .hero__photo-frame {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .hero__photo {
    object-position: center center;
  }
}

.hero__caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: var(--space-md);
  padding-left: var(--space-xs);
  border-left: 1px solid var(--color-border);
}

.hero__caption-name {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-text);
}

.hero__caption-role {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-text-muted);
}

/* Benefits strip */

.hero__benefits {
  padding-top: clamp(0.875rem, 1.5vw, 1.125rem);
  border-top: 1px solid var(--color-border);
}

.hero__benefits-text {
  margin: 0;
  font-size: clamp(0.6875rem, 1.2vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Mobile order */

@media (max-width: 959px) {
  .hero {
    padding-block: clamp(2rem, 5vh, 3rem) clamp(1.5rem, 3vh, 2rem);
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .hero__content {
    order: 1;
    max-width: none;
  }

  .hero__media {
    order: 2;
  }

  .hero__cta {
    align-self: stretch;
  }

  .hero__benefits-text {
    text-align: left;
    letter-spacing: 0.08em;
    line-height: 1.65;
  }
}

/* Subtle entrance */

@media (prefers-reduced-motion: no-preference) {
  .hero__content,
  .hero__media,
  .hero__benefits {
    animation: heroFadeIn 0.7s ease both;
  }

  .hero__media {
    animation-delay: 0.12s;
  }

  .hero__benefits {
    animation-delay: 0.2s;
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
