.bg { display: none; }
body { overflow: hidden; }

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* Snap sections */
.press-hero,
.press-form,
.site-footer {
  height: 100vh;
  scroll-snap-align: start;
}

/* ===== Background logic like in_competition ===== */
.press-hero,
.press-form{
  position: relative;
  isolation: isolate;
}

.press-hero::before,
.press-form::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--award-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}

.press-hero::after,
.press-form::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.15)
  );
  z-index: 1;
}

.press-hero > .container,
.press-form > .container{
  position: relative;
  z-index: 2;
}

/* Hero: dark bg → transparent overlay, white text */
.press-hero{
  color: rgba(15,15,18,0.92);
}

.press-hero::after{
  background: transparent;
}

/* ===== Hero alignment ===== */
.press-hero{
  display: grid;
  align-items: center;
  padding: 0;
}

.press-hero > .container{
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
  padding-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

/* ===== Form section ===== */
.press-form{
  display: grid;
  align-items: center;
}

.press-form__wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 680px;
  padding-top: clamp(1rem, 2vh, 2rem);
  padding-bottom: clamp(5rem, 9vh, 7rem);
}

/* FORM */
.form{
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.form__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.form input,
.form textarea{
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.88);
  padding: 0.7rem 0.9rem;
  font: inherit;
}

.form textarea{
  border-radius: 18px;
  resize: vertical;
  min-height: 140px;
}

.form button{
  justify-self: flex-start;
}

@media (max-width: 600px){
  .form__grid{
    grid-template-columns: 1fr;
  }
}

.form__status{
    margin: 0.2rem 0 0;
    font-size: 0.92rem;
    opacity: 0.8;
  }
  
  .form__status.is-success{
    color: #1f7a3f;
  }
  
  .form__status.is-error{
    color: #b42318;
  }
