
*{margin:0;padding:0;box-sizing:border-box}
body{
font-family:Arial,sans-serif;
background:#050505;
color:#fff;
overflow-x:hidden;
}
a{text-decoration:none}

.site-header{
position:fixed;
top:0;
width:100%;

background:rgba(0,0,0,.45);
backdrop-filter:blur(14px);

border-bottom:1px solid rgba(255,255,255,.08);

z-index:999;

transition:.3s ease;
}
.site-header.scrolled{
background:rgba(0,0,0,.75);
}
.nav-shell{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 24px;
}
.logo{
font-size:1.7rem;
font-weight:800;
color:#D4AF37;
}
.main-nav{
display:flex;
gap:22px;
}
.main-nav a{
color:#fff;
font-size:.95rem;
}
.main-nav a:hover{
color:#D4AF37;
}
.hero{
min-height:100vh;
display:flex;
align-items:center;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.9)),
url('assets/hero-cinematic.jpg') center/cover no-repeat;
}
.hero-content{
max-width:760px;
padding:140px 28px 90px;
}
.eyebrow{
letter-spacing:1px;
text-transform:uppercase;
color:#ddd;
font-size:.8rem;
}
.hero h1{
font-size:5rem;
line-height:.95;
letter-spacing:-2px;
color:#D4AF37;
margin:18px 0;
}
.hero-text{
font-size:1.15rem;
line-height:1.8;
max-width:640px;
color:#e2e2e2;
}
.hero-actions{
display:flex;
gap:16px;
margin-top:28px;
}
.btn{
padding:15px 26px;
border-radius:30px;
font-weight:bold;
}
.btn-gold{
background:#D4AF37;
color:#000;
box-shadow:0 0 24px rgba(212,175,55,.35);
}
.btn-dark{
background:#111;
border:1px solid #333;
color:#fff;
}
.section{
padding:70px 24px;
}
.section-title{
font-size:2.4rem;
margin-bottom:28px;
}
.row{
display:flex;
gap:22px;
overflow-x:auto;
padding-bottom:10px;
}
.video-card{
min-width:320px;
background:#0f0f0f;
border-radius:22px;
overflow:hidden;
position:relative;
transition:.35s ease;
border:1px solid #1f1f1f;
}
.video-card:hover{
transform:translateY(-8px) scale(1.02);
}
.video-card img{
width:100%;
aspect-ratio:16/9;
object-fit:cover;
display:block;
}
.video-info{
padding:18px;
}
.video-info h3{
margin-bottom:10px;
font-size:1.3rem;
}
.video-info p{
color:#ccc;
line-height:1.6;
}
.footer{
padding:50px 24px;
background:#000;
border-top:1px solid #1d1d1d;
}
.footer-logo{
font-size:1.8rem;
font-weight:800;
color:#D4AF37;
margin-bottom:10px;
}
@media(max-width:768px){
.main-nav{display:none}
.hero{
min-height:88vh;
background-position:center;
}
.hero-content{
padding:120px 22px 70px;
}
.hero h1{
font-size:3.2rem;
line-height:1.02;
}
.hero-text{
font-size:1rem;
line-height:1.7;
}
.hero-actions{
flex-direction:column;
}
.btn{
width:100%;
text-align:center;
}
.video-card{
min-width:88%;
}
.section-title{
font-size:2rem;
}
}
