*{box-sizing:border-box}

:root{
  --ink:#f2eee7;
  --muted:#c8c0b4;
  --accent:#b85f22;
  --bg:#0a0908;
}

html,body{
  margin:0;
  min-height:100%;
  background:var(--bg);
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif;
}

body{min-height:100svh}

.hero{
  position:relative;
  min-height:100svh;
  display:grid;
  place-items:center;
  overflow:hidden;
  isolation:isolate;
  background:url("assets/hero.webp") center center/cover no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-3%;
  z-index:-2;
  background:url("assets/hero.webp") center center/cover no-repeat;
  transform:scale(1.03);
  animation:slowPush 18s ease-in-out infinite alternate;
}

.overlay{
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 50% 58%,rgba(0,0,0,0),rgba(0,0,0,.25) 78%),
    linear-gradient(to bottom,rgba(0,0,0,.03),rgba(0,0,0,.20));
}

.content{
  width:min(88%,860px);
  text-align:center;
  padding:34px 24px 30px;
  transform:translateY(-4vh);
  border:1px solid rgba(255,255,255,.07);
  background:rgba(5,5,5,.08);
  backdrop-filter:blur(.6px);
  box-shadow:0 20px 55px rgba(0,0,0,.20);
}

.brand{
  margin:0 0 14px;
  font-family:Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif;
  font-size:clamp(1.7rem,4.8vw,4.1rem);
  letter-spacing:.06em;
  line-height:.95;
  text-transform:uppercase;
  text-shadow:0 5px 20px rgba(0,0,0,.65);
}

.brand span{color:var(--accent)}

h1{
  margin:0;
  font-family:Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif;
  font-size:clamp(2.7rem,6.2vw,5.4rem);
  line-height:.92;
  letter-spacing:.035em;
  text-transform:uppercase;
  text-shadow:0 7px 26px rgba(0,0,0,.72);
}

.divider{
  width:94px;
  height:3px;
  margin:23px auto 20px;
  background:var(--accent);
  box-shadow:0 0 18px rgba(184,95,34,.5);
}

.motto,.tagline{
  margin:7px 0;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-shadow:0 3px 12px rgba(0,0,0,.82);
}

.motto{font-size:clamp(.76rem,1.65vw,1.02rem)}
.tagline{color:var(--muted);font-size:clamp(.70rem,1.45vw,.91rem)}

.socials{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:25px;
}

.social-icon{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  color:var(--ink);
  border:1px solid rgba(255,255,255,.38);
  background:rgba(0,0,0,.28);
  text-decoration:none;
  transition:transform .2s ease,color .2s ease,border-color .2s ease,background .2s ease;
}

.social-icon svg{
  width:26px;
  height:26px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.social-icon svg .dot,
.social-icon.youtube svg .play{
  fill:currentColor;
  stroke:none;
}

.social-icon:hover,
.social-icon:focus-visible{
  color:var(--accent);
  border-color:var(--accent);
  background:rgba(184,95,34,.14);
  transform:translateY(-2px) scale(1.04);
  outline:none;
}

footer{
  position:absolute;
  left:0;
  right:0;
  bottom:14px;
  text-align:center;
  color:rgba(255,255,255,.58);
  font-size:.66rem;
  letter-spacing:.12em;
}

@keyframes slowPush{
  from{transform:scale(1.03) translate3d(0,0,0)}
  to{transform:scale(1.08) translate3d(0,-.5%,0)}
}

@media(max-width:640px){
  .hero,.hero::before{background-position:43% center}

  .content{
    width:min(92%,560px);
    padding:27px 16px 24px;
    transform:translateY(-2vh);
    background:rgba(5,5,5,.11);
  }

  h1{font-size:clamp(2.4rem,12vw,4.2rem)}

  .social-icon{
    width:47px;
    height:47px;
  }

  .social-icon svg{
    width:24px;
    height:24px;
  }
}

@media(prefers-reduced-motion:reduce){
  .hero::before{animation:none}
  .social-icon{transition:none}
}
