/* sections/hero.css */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-block: var(--s-10) var(--s-9);
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  filter: saturate(0.92) contrast(1.04);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(245,241,232,0.55) 0%, rgba(245,241,232,0.10) 28%, rgba(15,13,10,0.45) 100%),
    linear-gradient(90deg, rgba(15,13,10,0.55) 0%, rgba(15,13,10,0) 60%);
}
.hero__media::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 80%, rgba(184,139,58,0.18), transparent 50%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  width: 100%;
  color: var(--paper);
}
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
    gap: var(--s-8);
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,241,232,0.78);
  font-size: var(--f-tiny);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: var(--s-4);
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 12px var(--gold-soft);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: var(--f-d1);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--paper);
  font-weight: 400;
  max-width: 14ch;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-soft);
  font-feature-settings: "ss01";
}
.hero__sub {
  color: rgba(245,241,232,0.86);
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.25rem);
  line-height: var(--lh-loose);
  max-width: 52ch;
  margin-top: var(--s-4);
}
.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: var(--s-5);
  flex-wrap: wrap;
}

.hero__side {
  align-self: end;
  color: rgba(245,241,232,0.78);
  font-size: var(--f-small);
  line-height: var(--lh-loose);
}
.hero__side dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 14px;
  margin: 0;
}
.hero__side dt {
  color: rgba(245,241,232,0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--f-tiny);
}
.hero__side dd { margin: 0; color: var(--paper); font-family: var(--font-mono); font-size: 0.85rem; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(245,241,232,0.6);
  font-size: var(--f-tiny);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, currentColor 0%, transparent 100%);
  animation: hero-scroll 2.4s var(--ease-in-out) infinite;
}
@keyframes hero-scroll {
  0% { transform: scaleY(0); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: top; }
  61% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 700px) {
  .hero__side { display: none; }
  .hero__scroll { display: none; }
}
