@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Libre+Baskerville:ital@0;1&display=swap');

:root{
  --asphalt: #17140F;
  --sand: #F2E8D5;
  --rust: #B8532E;
  --dust-blue: #3E5C6B;
  --sun: #E8A33D;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--asphalt);
  color: var(--sand);
  font-family: 'Libre Baskerville', Georgia, serif;
}

.scene{
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.scene__photo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  filter: saturate(0.92) contrast(1.03);
}

.scene__scrim{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(23,20,15,.94) 0%, rgba(23,20,15,.72) 22%, rgba(23,20,15,.18) 52%, rgba(23,20,15,.35) 100%);
}

.badge{
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .08em;
  color: var(--sand);
  opacity: .9;
}

.badge__shield{
  width: 34px;
  height: 34px;
  border: 2px solid var(--sand);
  border-radius: 6px 6px 3px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  line-height: 1;
  padding-top: 2px;
}

.content{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 2rem 4.5rem;
  max-width: 78rem;
  margin: 0 auto;
  text-align: left;
  animation: rise 1.1s cubic-bezier(.22,.85,.32,1) both;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.content__main{ flex: 0 0 auto; }
.content__side{ flex: 0 1 26rem; padding-bottom: .6rem; }

.eyebrow{
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .32em;
  font-size: .8rem;
  color: var(--sun);
  text-transform: uppercase;
  margin: 0 0 .9rem;
}

h1{
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .92;
  margin: 0;
  white-space: nowrap;
  font-size: clamp(2.6rem, 8vw, 7rem);
  color: var(--sand);
  text-shadow: 0 6px 30px rgba(0,0,0,.35);
}

h1 em{
  font-style: normal;
  color: var(--rust);
}

.rule{
  width: 3.2rem;
  height: 4px;
  background: var(--rust);
  margin: 0 0 1rem;
  border-radius: 2px;
}

.caption{
  font-style: italic;
  font-size: 1.02rem;
  color: var(--sand);
  opacity: .85;
  max-width: 30rem;
  line-height: 1.6;
  margin: 0;
}

.caption strong{
  font-style: normal;
  color: var(--dust-blue);
  background: var(--sand);
  padding: 0 .3rem;
  border-radius: 2px;
}

@keyframes rise{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .content{ animation: none; }
}

@media (max-width: 860px){
  .content{
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }
  h1{ white-space: normal; }
  .content__side{ flex: 1 1 auto; }
}

@media (max-width: 600px){
  .badge{ top: 1.2rem; left: 1.2rem; }
  .content{ padding: 0 1.3rem 3rem; }
}
