
:root{
  --orange:#E0770A;
  --black:#0b0b0b;
  --panel:#151515;
  --muted:#b8b8b8;
  --line:rgba(255,255,255,.10);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--black);
  color:white;
}

.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 5vw;
  background:#111;
  position:sticky;
  top:0;
  z-index:10;
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  gap:14px;
  align-items:center;
}

.logo-link{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.logo-link img{
  width:64px;
  height:64px;
  object-fit:contain;
}

.brand-text h3{
  margin:0;
  font-size:24px;
  color:white;
  text-decoration:none;
}

.brand-text p{
  margin:4px 0 0;
  color:#bbb;
  text-decoration:none;
}

.nav{
  display:flex;
  gap:20px;
}

.nav a{
  color:white;
  text-decoration:none;
  font-weight:700;
}

.nav a:hover{
  color:var(--orange);
}

.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:80px 5vw;
  align-items:center;
  background:radial-gradient(circle at top left, rgba(224,119,10,.30), transparent 32%);
}

.hero h1{
  font-size:82px;
  line-height:.9;
  margin:14px 0;
}

.hero p{
  font-size:22px;
  line-height:1.6;
  color:#d0d0d0;
}

.hero-logo img{
  width:100%;
  max-width:520px;
  display:block;
  margin:auto;
}

.eyebrow,.title span,.mini{
  color:var(--orange);
  font-weight:900;
  letter-spacing:.12em;
  font-size:12px;
  text-transform:uppercase;
}

.buttons{
  display:flex;
  gap:14px;
  margin-top:28px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 22px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  border:none;
  cursor:pointer;
}

.orange{
  background:var(--orange);
  color:black;
}

.darkbtn{
  background:#1c1c1c;
  color:white;
  border:1px solid var(--line);
}

.section{
  padding:80px 5vw;
}

.dark{
  background:#090909;
}

.title h2{
  font-size:56px;
  margin:10px 0;
}

.title p{
  color:var(--muted);
  line-height:1.5;
}

.cards,.gallery,.socials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:30px;
}

.card,.gcard,.social{
  background:var(--panel);
  padding:26px;
  border-radius:24px;
  border:1px solid var(--line);
}

.card p{
  color:var(--muted);
  line-height:1.55;
}

.gcard{
  font-size:48px;
  text-align:center;
}

.gcard h3{
  font-size:24px;
  margin-top:18px;
}

.social{
  text-decoration:none;
  color:white;
  font-weight:900;
  font-size:22px;
  text-align:center;
}

.social:hover{
  border-color:var(--orange);
}

.sticker-team{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:flex-start;
  margin-top:30px;
}

.sticker-card{
  width:156px;
  min-height:250px;
  background:linear-gradient(180deg,#1a1a1a,#101010);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:10px;
  text-align:center;
  box-shadow:0 18px 45px rgba(0,0,0,.32);
}

.sticker-photo{
  width:132px;
  height:132px;
  margin:0 auto 10px;
  border-radius:14px;
  overflow:hidden;
  background:var(--orange);
  border:2px solid rgba(255,255,255,.18);
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.owner-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}

.sticker-role{
  display:inline-block;
  background:var(--orange);
  color:#0b0b0b;
  font-weight:900;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.04em;
  border-radius:999px;
  padding:6px 9px;
  margin-bottom:8px;
}

.sticker-card h3{
  font-size:14px;
  line-height:1.15;
  margin:4px 0 8px;
}

.sticker-links{
  display:flex;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
}

.sticker-links a{
  background:#242424;
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:6px 8px;
  font-size:10px;
  font-weight:800;
  text-decoration:none;
}

.silhouette{
  background:var(--orange);
  align-items:center;
}

.silhouette span{
  width:74px;
  height:92px;
  display:block;
  position:relative;
}

.silhouette span:before{
  content:"";
  width:42px;
  height:42px;
  background:#050505;
  border-radius:50%;
  position:absolute;
  left:16px;
  top:0;
}

.silhouette span:after{
  content:"";
  width:74px;
  height:48px;
  background:#050505;
  border-radius:38px 38px 12px 12px;
  position:absolute;
  left:0;
  bottom:0;
}

.empty-role h3{
  color:#a8a8a8;
}

.form{
  display:grid;
  gap:16px;
  max-width:700px;
  margin-top:30px;
}

input,select,textarea{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#151515;
  color:white;
  font-size:16px;
}

textarea{
  min-height:160px;
}

.footer{
  padding:30px;
  text-align:center;
  color:#aaa;
  border-top:1px solid var(--line);
}

@media(max-width:900px){
  .hero,.cards,.gallery,.socials{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:52px;
  }

  .nav{
    display:none;
  }

  .sticker-team{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }

  .sticker-card{
    width:100%;
    min-height:230px;
  }

  .sticker-photo{
    width:120px;
    height:120px;
  }
}
