/* ── Hero ── */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--color-text);
  color: #fff;
  overflow: hidden;
  display: flex;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-zoom 18s ease-out forwards;
}
@keyframes hero-zoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(26, 24, 20, 0.5) 80%, rgba(26, 24, 20, 0.85) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(26, 24, 20, 0.3), transparent 60%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(var(--space-8), 14vw, var(--space-16));
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 60ch;
}
.hero__content--center { margin-inline: auto; text-align: center; align-items: center; }
.hero__content--left   { margin-right: auto; text-align: left; align-items: flex-start; }

.hero__subheading {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.hero__subheading::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.hero__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-7xl);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
  font-feature-settings: 'liga', 'dlig', 'salt', 'ss01';
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-rise 900ms 100ms var(--ease) forwards;
}
.hero__body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: rgba(255, 255, 255, 0.85);
  max-width: 48ch;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 900ms 350ms var(--ease) forwards;
}
.hero__content--center .hero__body { margin-inline: auto; }

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-3);
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 900ms 550ms var(--ease) forwards;
}

.hero .btn-primary {
  background: #fff;
  color: var(--color-text);
  border-color: #fff;
}
.hero .btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-accent-ink);
  border-color: var(--color-accent);
}

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .hero { min-height: 78vh; }
  .hero__heading { font-size: clamp(3rem, 14vw, 5rem); }
  .hero__btns { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__content--center .hero__btns { align-items: center; }
}
