/* ==========================================================================
   HERO — full-bleed background photo, text overlaid on top (left side).
   Rebuilt per direct feedback: the previous split two-column layout (text
   panel + separate image panel) read as empty/unattractive. Still no
   animation/GSAP here — same static-layout scope as before, just a
   different composition.
   ========================================================================== */
.hero-static{
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  direction: ltr;
  display: flex;
  align-items: center;
}

.hero-static .hero-photo{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-static .hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark on the side the text sits (physical left), fading to clear so the
   photo still reads on the right — not a flat scrim over the whole image. */
.hero-static .hero-scrim{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
    rgba(20,17,13,0.72) 0%,
    rgba(20,17,13,0.45) 40%,
    rgba(20,17,13,0.08) 68%,
    transparent 85%);
}

.hero-static .hero-text{
  position: relative;
  z-index: 2;
  direction: rtl;
  text-align: right;
  padding-inline-start: var(--sp-9);
  padding-inline-end: var(--sp-8);
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  color: var(--ivory);
}

.hero-static .hero-eyebrow{
  font-family: var(--font-latin);
  font-style: italic;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: var(--text-small);
  color: var(--gold-soft);
}

.hero-static h1{
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(var(--text-6), 5.4vw, var(--text-8));
  color: var(--ivory);
  max-width: 12ch;
}

.hero-static .hero-paragraph{
  font-size: var(--text-2);
  line-height: var(--leading-body, 1.9);
  color: rgba(247,242,231,.82);
  max-width: 42ch;
}

.hero-static .hero-cta-row{
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-2);
}

/* Buttons need a glass treatment here since they now sit on a photo,
   not a flat background — still the same .btn component, just the
   variant meant for busy backdrops. */
.hero-static .btn.btn--outline{
  border-color: rgba(247,242,231,.5);
  color: var(--ivory);
}

.hero-static .hero-scroll-indicator{
  position: absolute;
  z-index: 2;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  color: rgba(247,242,231,.75);
  font-size: var(--text-caption);
  letter-spacing: .3em;
  text-transform: uppercase;
  width: fit-content;
}
.hero-static .hero-scroll-indicator .line{
  width: 1px;
  height: 46px;
  background: rgba(247,242,231,.4);
}

/* ---- Responsive ---- */
@media (max-width: 1080px){
  .hero-static .hero-text{ max-width: 80%; }
  .hero-static .hero-scrim{
    background: linear-gradient(180deg,
      rgba(20,17,13,0.35) 0%,
      rgba(20,17,13,0.55) 55%,
      rgba(20,17,13,0.8) 100%);
  }
}

@media (max-width: 640px){
  .hero-static{ align-items: flex-end; padding-bottom: var(--sp-8); }
  .hero-static .hero-text{
    max-width: 100%;
    padding-inline-start: var(--sp-4);
    padding-inline-end: var(--sp-4);
    gap: var(--sp-4);
  }
  .hero-static h1{ font-size: clamp(var(--text-5), 9vw, var(--text-7)); max-width: none; }
  .hero-static .hero-cta-row{ flex-direction: column; align-items: stretch; }
}
