/* ══════════════════════════════════════════
   QURTÈN — Hero Section
   ══════════════════════════════════════════ */

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

/* ── Background image ──────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: kenBurns 14s var(--ease-smooth) forwards;
  will-change: transform;
}

/* Stronger gradient at bottom so small text is always legible */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(16, 11, 6, 0.90) 0%,
    rgba(16, 11, 6, 0.55) 28%,
    rgba(16, 11, 6, 0.12) 52%,
    rgba(16, 11, 6, 0.02) 100%
  );
}

/* ── Content ───────────────────────────── */
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 1.375rem 4.5rem;
}

@media (min-width: 640px) { .hero__content { padding: 0 2rem 5rem; } }
@media (min-width: 768px) { .hero__content { padding: 0 2.75rem 6rem; } }

/* Desktop: full width so left-aligned text hugs the left edge */
@media (min-width: 1024px) {
  .hero__content {
    padding: 0 4.5rem 6rem;
  }
}

/* ── Eyebrow ───────────────────────────── */
.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: var(--fw-600);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
  animation: heroFadeUp var(--dur-slow) var(--ease-out) 0.25s both;
}

/* ── Title ─────────────────────────────── */
.hero__title {
  font-family: var(--ff-display);
  /* Mobile/tablet: large and impactful */
  font-size: clamp(2.5rem, 7.5vw, 6.25rem);
  font-weight: var(--fw-400);
  line-height: 1.04;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: heroFadeUp var(--dur-slow) var(--ease-out) 0.45s both;
  max-width: 16ch;
}

/* Desktop: smaller so it fits in the lower-left without rising to face level */
@media (min-width: 1024px) {
  .hero__title {
    font-size: clamp(1.875rem, 2.8vw, 3.25rem);
  }
}

/* ── Description ───────────────────────── */
.hero__desc {
  font-family: var(--ff-body);
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  font-weight: var(--fw-300);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 42ch;
  animation: heroFadeUp var(--dur-slow) var(--ease-out) 0.65s both;
}

/* ── CTA ───────────────────────────────── */
.hero__actions {
  animation: heroFadeUp var(--dur-slow) var(--ease-out) 0.85s both;
}
