/* =====================================================
   1. HERO LAYOUT
===================================================== */

.hero{
  position:relative;
  isolation:isolate;

  width:100%;
  min-height:520px;

  display:grid;
  grid-template-columns:minmax(0, 560px) minmax(300px, 420px);
  align-items:center;
  justify-content:center;

  gap:clamp(48px, 7vw, 110px);

  padding:
    clamp(76px, 7vw, 108px)
    max(32px, calc((100vw - 1180px) / 2))
    clamp(64px, 6vw, 88px);

  overflow:hidden;

  background:
    linear-gradient(
      90deg,
      rgba(5,18,15,.82) 0%,
      rgba(5,18,15,.56) 34%,
      rgba(5,18,15,.16) 64%,
      rgba(5,18,15,.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.10),
      rgba(0,0,0,.22)
    ),
    url("/media/hero-image.png");

  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.30) 0%,
      rgba(0,0,0,.12) 44%,
      rgba(0,0,0,0) 76%
    );
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:3;
  height:1px;
  background:rgba(255,248,226,.72);
}

.hero-copy,
.hero-mark-wrap{
  position:relative;
  z-index:2;
}

.hero-copy{
  max-width:560px;
  opacity:0;
  transform:translateY(14px);
  animation:revealCopy 850ms ease forwards 140ms;
}


/* =====================================================
   2. EYEBROW
===================================================== */

.eyebrow{
  display:block;
  margin:0 0 10px;
  color:var(--gold-soft);
  font-size:.82rem;
  font-weight:950;
  letter-spacing:.30em;
  text-transform:uppercase;
  text-shadow:0 4px 16px rgba(0,0,0,.35);
}

.eyebrow::before{
  display:none;
}


/* =====================================================
   3. HERO TITLE
===================================================== */

h1{
  display:block;
  max-width:560px;
  margin:0;
  font-family:"Cinzel", Georgia, serif;
  line-height:.94;
  text-transform:uppercase;
  text-wrap:balance;
  text-shadow:
    0 2px 0 rgba(255,255,255,.38),
    0 5px 0 rgba(94,61,39,.62),
    0 18px 36px rgba(0,0,0,.42);
}

.title-small{
  display:block;
  margin:0 0 8px;
  color:var(--gold-soft);
  font-family:"Inter", Arial, sans-serif;
  font-size:.82rem;
  font-weight:950;
  letter-spacing:.28em;
  text-transform:uppercase;
}

.title-main{
  display:block;
  color:#fffaf0;
  font-family:"Cinzel", Georgia, serif;
  font-size:clamp(3.25rem, 5.25vw, 5.6rem);
  font-weight:950;
  letter-spacing:.008em;
  line-height:.98;
}

.title-main span{
  display:block;
  white-space:normal;
}

.title-main span:first-child{
  display:none;
}

.title-main span:last-child{
  font-size:1em;
}


/* =====================================================
   4. HERO MESSAGE
===================================================== */

.hero-message{
  position:relative;
  max-width:560px;
  margin-top:20px;
  padding:0;
  background:none;
  border:0;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
}

.hero-message::before,
.hero-message::after{
  display:none;
}

.lead{
  position:relative;
  max-width:560px;
  margin:0;
  color:rgba(255,250,240,.92);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(1.18rem, 1.55vw, 1.44rem);
  font-weight:700;
  line-height:1.35;
  letter-spacing:.005em;
  text-shadow:0 8px 24px rgba(0,0,0,.28);
}

.lead-punch{
  display:none;
}


/* =====================================================
   5. HERO ACTIONS
===================================================== */

.actions{
  display:flex;
  gap:12px;
  width:min(560px,100%);
  margin-top:26px;
}

.actions .btn{
  flex:1;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 26px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.28);
  color:var(--ivory);
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:.72rem;
  font-weight:950;
  text-decoration:none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.btn.primary{
  position:relative;
  overflow:hidden;
  border-color:rgba(245,210,125,.48);
  background:linear-gradient(135deg, var(--forest-mid), var(--forest));
  color:white;
  box-shadow:0 14px 30px rgba(0,0,0,.20);
}

.btn.primary::before{
  content:"";
  position:absolute;
  top:0;
  left:-85%;
  width:54%;
  height:100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.18),
      transparent
    );
  transform:skewX(-18deg);
  transition:left .38s ease;
}

.btn.primary:hover::before,
.btn.primary:focus-visible::before{
  left:130%;
}

.btn.secondary{
  border-color:rgba(255,255,255,.42);
  background:rgba(255,255,255,.92);
  color:var(--forest-dark);
}

.btn:hover,
.btn:focus-visible{
  transform:translateY(-2px);
  border-color:var(--gold-soft);
  box-shadow:0 14px 30px rgba(0,0,0,.24);
}

.btn:focus-visible{
  outline:2px solid var(--gold-soft);
  outline-offset:4px;
}

.btn.prayer{
  color:#fff8e8;
  background:#9b742b;
  border:1px solid rgba(155,116,43,.45);
  box-shadow:0 14px 28px rgba(155,116,43,.20);
}

.btn.prayer:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(155,116,43,.28);
}


/* =====================================================
   6. IDENTITY CHIPS
===================================================== */

.identity-strip{
  display:none;
}


/* =====================================================
   7. HERO MARK
===================================================== */

.hero-mark-wrap{
  position:relative;
  z-index:2;
  display:grid;
  place-items:center;
}

.heart-stage{
  position:relative;
  width:min(390px, 30vw);
  aspect-ratio:1 / 1;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,224,156,.62);
  background:
    radial-gradient(circle, rgba(255,219,121,.18), transparent 58%),
    rgba(255,255,255,.04);
  box-shadow:
    0 28px 70px rgba(0,0,0,.26),
    inset 0 0 60px rgba(255,224,156,.08);
}





/* =====================================================
   8. BOTTOM CALLOUT
===================================================== */

.welcome-callout,
.footer-tag{
  display:none;
}


/* =====================================================
   9. ANIMATIONS
===================================================== */

@keyframes revealCopy{
  to{
    opacity:1;
    transform:translateY(0);
  }
}


/* =====================================================
   10. TABLET RESPONSIVE
===================================================== */

@media(max-width:900px){

  .hero{
    grid-template-columns:1fr;
    min-height:auto;
    gap:34px;
    padding:64px 24px 70px;
    text-align:center;
    background-position:center right;
  }

  .hero-copy{
    margin:0 auto;
  }

  h1,
  .title-main,
  .lead,
  .actions{
    margin-left:auto;
    margin-right:auto;
  }

  .title-main{
    font-size:clamp(2.75rem, 10vw, 4.5rem);
  }

  .title-main span{
    white-space:normal;
  }

  .actions{
    justify-content:center;
  }

  .hero-mark-wrap{
    order:2;
  }

  .heart-stage{
    width:min(330px, 76vw);
  }

}


/* =====================================================
   11. MOBILE RESPONSIVE
===================================================== */

@media(max-width:520px){

  .hero{
    padding:52px 18px 58px;
  }

  .eyebrow{
    font-size:.66rem;
    letter-spacing:.18em;
  }

  .title-small{
    font-size:.7rem;
    letter-spacing:.18em;
  }

  .title-main{
    font-size:clamp(2.3rem, 12vw, 3.35rem);
  }

  .lead{
    font-size:1.08rem;
  }

  .actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .heart-stage{
    width:min(280px, 82vw);
  }

}