body{
margin:0;
font-family:sans-serif;
background:#0a0a0c;
color:#fff;
}

.container{
width:90%;
margin:auto;
}

/* HEADER */
.topbar{
background:#000;
padding:12px 0;
}

.topbar__inner{
display:flex;
justify-content:space-between;
align-items:center;
}

/* LOGO FIX */
.brand{
display:flex;
align-items:center;
gap:10px;
}

.brand img{
width:45px;
height:45px;
object-fit:contain;
}

.brand span{
font-size:18px;
font-weight:bold;
}

/* BUTTONS */
.btn{
padding:10px 15px;
border-radius:8px;
margin:5px;
display:inline-block;
font-weight:bold;
}

.primary{
background:red;
color:#fff;
}

.ghost{
background:#222;
color:#fff;
}

/* HERO */
.hero{
padding:50px 0;
}

.hero__grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
align-items:center;
}

.hero__media img{
width:100%;
height:320px;
object-fit:cover;
border-radius:12px;
}

/* GRID */
.grid3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

/* CARD */
.card{
background:#111;
padding:15px;
border-radius:10px;
}

.card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px;
}

.highlight{
border:1px solid red;
}

/* SECTION */
.section{
padding:40px 0;
}

.alt{
background:#111;
}

/* FOOTER */
.footer{
text-align:center;
padding:20px;
}

/* STICKY BAR */
.sticky{
position:fixed;
bottom:0;
width:100%;
display:flex;
}

.sticky a{
flex:1;
text-align:center;
padding:15px;
color:#fff;
font-weight:bold;
}

.sticky a:first-child{
background:#111;
}

.sticky a:last-child{
background:red;
}