
body{
margin:0;
font-family:Arial,sans-serif;
background:#0b0b0b;
color:white;
}

a{color:inherit}

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

.brand{
display:flex;
gap:14px;
align-items:center;
color:white;
text-decoration:none;
}

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

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

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

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

.menu-wrap{
position:relative;
}

.menu-button{
width:52px;
height:52px;
border-radius:16px;
border:1px solid rgba(255,255,255,.12);
background:#181818;
color:white;
font-size:28px;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
}

.dropdown{
position:absolute;
right:0;
top:64px;
width:270px;
background:rgba(20,20,20,.98);
border:1px solid rgba(255,255,255,.12);
border-radius:22px;
padding:12px;
box-shadow:0 22px 60px rgba(0,0,0,.45);
display:none;
}

.dropdown.open{
display:grid;
gap:6px;
animation:drop .18s ease-out;
}

@keyframes drop{
from{opacity:0;transform:translateY(-8px)}
to{opacity:1;transform:translateY(0)}
}

.dropdown a{
text-decoration:none;
color:white;
padding:14px 16px;
border-radius:14px;
font-weight:800;
}

.dropdown a:hover{
background:#E0770A;
color:#111;
}

.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,.3), transparent 30%);
}

.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:#E0770A;
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;
display:inline-flex;
align-items:center;
justify-content:center;
}

.orange{
background:#E0770A;
color:black;
}

.dark{
background:#1c1c1c;
color:white;
border:1px solid rgba(255,255,255,.1);
}

.section{
padding:80px 5vw;
}

.dark-section{
background:#090909;
}

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

.title p{
color:#b8b8b8;
font-size:18px;
line-height:1.55;
}

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

.gallery,.socials{
grid-template-columns:repeat(4,1fr);
}

.card,.gcard,.social,.panel{
background:#151515;
padding:26px;
border-radius:24px;
border:1px solid rgba(255,255,255,.08);
}

.card p,.panel p{
color:#bbb;
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;
}

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

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

textarea{
min-height:160px;
}

.form-note{
color:#b8b8b8;
font-size:14px;
line-height:1.5;
margin:0;
}

.team-row{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-top:30px;
}

.team-card{
display:grid;
grid-template-columns:110px 1fr;
gap:18px;
align-items:center;
background:#151515;
padding:18px;
border-radius:24px;
border:1px solid rgba(255,255,255,.08);
max-width:560px;
}

.team-photo-wrap{
height:110px;
width:110px;
border-radius:18px;
overflow:hidden;
background:#E0770A;
display:flex;
align-items:flex-end;
justify-content:center;
}

.team-photo{
height:110px;
width:110px;
object-fit:cover;
object-position:center top;
display:block;
}

.team-info h3{
font-size:24px;
margin:8px 0;
}

.profile-links{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-top:12px;
}

.profile-links a{
background:#E0770A;
color:#000;
font-weight:900;
padding:10px 14px;
border-radius:999px;
text-decoration:none;
font-size:14px;
}

.footer{
padding:30px;
text-align:center;
color:#aaa;
border-top:1px solid rgba(255,255,255,.08);
}

.page-hero{
padding:80px 5vw 40px;
}

.page-hero h1{
font-size:72px;
line-height:.9;
margin:10px 0;
}

.back-link{
display:inline-flex;
margin-bottom:22px;
color:#E0770A;
font-weight:900;
text-decoration:none;
}

.instagram-feed-wrap{
width:100%;
max-width:1180px;
margin:30px auto 0;
background:#111;
border:1px solid rgba(255,255,255,.10);
border-radius:24px;
padding:22px;
overflow:visible;
min-height:520px;
}

@media(max-width:900px){
.header{
gap:12px;
}
.brand h3{
font-size:20px;
}
.brand p{
font-size:14px;
}
.hero,.cards,.gallery,.socials{
grid-template-columns:1fr;
}
.hero h1,.page-hero h1{
font-size:52px;
}
.hero{
padding:60px 5vw;
}
.hero-logo{
display:none;
}
.dropdown{
width:250px;
}
.team-card{
grid-template-columns:100px 1fr;
max-width:100%;
}
.team-photo-wrap,.team-photo{
width:100px;
height:100px;
}
.instagram-feed-wrap{
padding:14px;
min-height:620px;
border-radius:18px;
}
}


/* Remove underlines from homepage exploration cards */
.cards a,
.cards a *,
.card,
.card *{
text-decoration:none !important;
}


/* Reduce empty space in internal pages */
.page-hero{
padding-bottom:10px !important;
}

.page-hero p{
margin-bottom:12px !important;
}

.section{
padding-top:35px !important;
}

.cards,
.gallery,
.team-row,
.socials,
.form{
margin-top:12px !important;
}
