/* ==========================================================================
   Hero — Massive editorial typography
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--space-24);
  padding-bottom: var(--space-16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

/* Massive name */
.hero__name {
  font-size: var(--text-display-lg);
  font-weight: var(--weight-black);
  letter-spacing: -0.06em;
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--on-surface);
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  font-family: var(--font-headline);
  font-size: var(--text-body-lg);
  font-weight: var(--weight-thin);
  letter-spacing: -0.02em;
  color: var(--on-surface-variant);
  margin-bottom: var(--space-12);
}

/* Two-column layout: tagline + latest work */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: end;
}

.hero__tagline {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: var(--weight-thin);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--on-surface);
  margin-bottom: var(--space-16);
}

.hero__tagline em {
  color: var(--primary);
  font-style: italic;
  font-weight: var(--weight-medium);
}

/* Social icon row */
.hero__socials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
  align-items: center;
}

.hero__social-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--on-surface-variant);
  transition: color var(--duration-fast) var(--ease-out);
}

.hero__social-link:hover {
  color: var(--primary);
}

.hero__social-link .material-symbols-outlined {
  font-size: 1.75rem;
}

.hero__social-label {
  font-family: var(--font-label);
  font-size: var(--text-label-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Latest work preview card */
.hero__latest {
  position: relative;
  background: var(--surface-container-low);
  border: var(--border-ghost);
  padding: 4px;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 380px;
}

.hero__latest-image {
  position: absolute;
  inset: 1rem;
  background: var(--surface-container-highest);
  overflow: hidden;
}

.hero__latest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all var(--duration-slow) var(--ease-out);
}

.hero__latest:hover .hero__latest-image img {
  filter: grayscale(0%);
  opacity: 1;
}

.hero__latest-info {
  position: relative;
  z-index: 1;
  padding: var(--space-8);
  background: rgba(251, 246, 238, 0.9);
  backdrop-filter: blur(12px);
  margin: 1rem;
}

.hero__latest-label {
  font-family: var(--font-label);
  font-size: var(--text-label-sm);
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-weight: var(--weight-bold);
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.hero__latest-title {
  font-family: var(--font-headline);
  font-size: var(--text-heading-sm);
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--on-surface);
}

.hero__latest-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: var(--border-ghost);
}

.hero__latest-venue {
  font-family: var(--font-label);
  font-size: var(--text-label-sm);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: var(--weight-medium);
  color: var(--on-surface-variant);
}

.hero__latest-arrow {
  font-size: 1.125rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: var(--space-8);
    min-height: auto;
  }

  .hero__name {
    margin-bottom: var(--space-2);
  }

  .hero__subtitle {
    font-size: var(--text-body-sm);
    margin-bottom: var(--space-8);
  }

  .hero__tagline {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    margin-bottom: var(--space-8);
  }

  .hero__socials {
    gap: var(--space-4) var(--space-6);
  }

  .hero__social-link .material-symbols-outlined {
    font-size: 1.25rem;
  }

  .hero__latest {
    aspect-ratio: auto;
    max-width: 100%;
    margin-top: var(--space-6);
  }

  .hero__latest-info {
    padding: var(--space-6);
  }
}

/* Tablet and up */
@media (min-width: 769px) {
  .hero__grid {
    grid-template-columns: 7fr 4fr;
    gap: var(--space-8);
  }

  .hero__latest {
    justify-self: end;
  }
}
