:root{
--bg:#0b0b0c;
--card:#141416;
--gold:#b99255;
--text:#f5f1e8;
--muted:#b7b0a5;
--border:#232326;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
background:var(--bg);
color:var(--text);
font-family:'Inter',sans-serif;
line-height:1.7;
overflow-x:hidden;
}

.container{
width:min(1500px,92%);
margin:auto;
}

.narrow{
max-width:1500px;
}

.site-header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(0,0,0,.75);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(185,146,85,.15);
}

.header-inner{
height:85px;
display:flex;
justify-content:space-between;
align-items:center;
}

.brand img{
height:85px;
display:block;
}

.menu-toggle{
display:none;
}

.main-nav{
display:flex;
gap:40px;
}

.main-nav a{
color:#fff;
text-decoration:none;
font-size:.95rem;
}

.hero{
min-height:100vh;
background:
linear-gradient(
90deg,
rgba(0,0,0,.88) 0%,
rgba(0,0,0,.72) 35%,
rgba(0,0,0,.40) 65%,
rgba(0,0,0,.20) 100%
),
url("assets/hero-valkara.jpg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
}

.hero-overlay{
display:none;
}

.hero-content{
max-width:650px;
margin-left:150px;
}

.eyebrow{
color:var(--gold);
letter-spacing:4px;
text-transform:uppercase;
display:block;
margin-top:25px;
margin-bottom:10px;
}

.hero h1{
font-family:'Cormorant Garamond',serif;
font-size:4.8rem;
line-height:.9;
margin:20px 0;
color:#fff;
}

.hero p{
color:var(--muted);
font-size:1.15rem;
max-width:520px;
}

.hero-actions{
display:flex;
gap:18px;
margin-top:35px;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 28px;
border-radius:12px;
text-decoration:none;
font-weight:500;
}

.btn-primary{
background:var(--gold);
color:#000;
}

.btn-secondary{
border:1px solid var(--gold);
color:var(--gold);
}

.project-text .btn{
margin-top:35px;
}

.section{
padding:120px 0;
}

.section-label{
color:var(--gold);
text-transform:uppercase;
letter-spacing:3px;
font-size:.8rem;
display:block;
margin-bottom:24px;
}

.section h2{
font-family:'Cormorant Garamond',serif;
font-size:4.2rem;
line-height:1.05;
margin:0 0 28px;
color:#fff;
font-weight:600;
}

.section p{
color:var(--muted);
}

.intro-section{
background:#0b0b0c;
padding:130px 0 120px;
}

.intro-section p{
font-size:1.08rem;
max-width:920px;
margin-bottom:14px;
}

.pillars-section,
.join-section,
.contact-section{
background:#101012;
}

.projects-section{
background:#0d0d0f;
}

.pillars-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
margin-top:50px;
}

.join-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
margin-top:50px;
margin-bottom:50px;
}

.join-section .btn{
display:inline-flex;
margin-top:0;
}

.pillar-card,
.join-grid div,
.project-card{
background:var(--card);
border:1px solid var(--border);
border-radius:18px;
padding:35px;
}

.pillar-card span{
color:var(--gold);
}

.pillar-card h3{
margin:10px 0;
color:#fff;
}

.project-feature{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.social-links{
display:flex;
flex-wrap:wrap;
gap:20px;
margin-top:25px;
}

.social-links a{
color:var(--gold);
text-decoration:none;
}

.site-footer{
background:#050505;
border-top:1px solid rgba(185,146,85,.15);
padding:30px 0;
}

.footer-inner{
display:flex;
justify-content:space-between;
}

@media(max-width:900px){

.site-header{
background:rgba(0,0,0,.86);
}

.header-inner{
height:92px;
}

.brand img{
height:74px;
}

.menu-toggle{
display:flex;
position:fixed;
top:24px;
right:22px;
width:46px;
height:46px;
border-radius:50%;
border:1px solid rgba(185,146,85,.45);
background:rgba(10,10,10,.9);
color:var(--gold);
font-size:1.35rem;
align-items:center;
justify-content:center;
cursor:pointer;
z-index:1001;
backdrop-filter:blur(10px);
}

.main-nav{
display:none;
position:fixed;
top:86px;
right:20px;
width:260px;
padding:24px;
background:rgba(10,10,10,.96);
border:1px solid rgba(185,146,85,.28);
border-radius:18px;
flex-direction:column;
gap:18px;
z-index:1000;
box-shadow:0 20px 60px rgba(0,0,0,.55);
}

.main-nav.open{
display:flex;
}

.hero{
min-height:100vh;
background-position:70% center;
align-items:flex-end;
padding-bottom:44px;
}

.hero-content{
margin-left:0;
max-width:100%;
padding:0 22px;
}

.eyebrow{
font-size:.78rem;
letter-spacing:5px;
}

.hero h1{
font-size:3rem;
line-height:.92;
max-width:100%;
}

.hero p{
font-size:1rem;
line-height:1.6;
max-width:100%;
}

.hero-actions{
flex-direction:column;
width:100%;
gap:16px;
margin-top:30px;
}

.hero-actions .btn{
width:100%;
padding:18px 24px;
border-radius:16px;
}

.section{
padding:80px 0;
}

.section h2{
font-size:2.8rem;
}

.pillars-grid,
.join-grid,
.project-feature,
.contact-grid{
grid-template-columns:1fr;
}

.footer-inner{
flex-direction:column;
gap:15px;
}

}
