/* =============================================
   SECTION 1 — HERO / CAPA
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__image-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(42, 24, 16, 0.3) 0%,
    rgba(42, 24, 16, 0.1) 30%,
    rgba(42, 24, 16, 0.2) 60%,
    rgba(42, 24, 16, 0.7) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(2rem, 5vw, 5rem) clamp(3rem, 8vh, 6rem);
  max-width: 800px;
}

.hero__label {
  font-family: var(--font-sans);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-medium);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-beige-aged);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  line-height: 0.92;
  margin-bottom: var(--space-xs);
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: var(--fw-regular);
  font-style: italic;
  color: var(--color-beige-aged);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.hero__description {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: var(--fw-light);
  color: rgba(245, 240, 235, 0.8);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* === Decorative side element === */
.hero__side-accent {
  position: absolute;
  top: 50%;
  right: clamp(2rem, 4vw, 5rem);
  transform: translateY(-50%);
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: var(--font-sans);
  font-size: var(--fs-tiny);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.4);
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding: 0 1.5rem 3rem;
  }

  .hero__side-accent {
    display: none;
  }
}
