:root {

--charcoal:#1F2421;
--ivory:#F7F4EE;
--sage:#7B8A77;
--stone:#D8D2C8;
--brass:#B39B6B;

}

/* RESET */

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:var(--ivory);
color:var(--charcoal);
line-height:1.8;
font-size:18px;
}

/* CONTAINER */

.container{
width:90%;
max-width:1100px;
margin:auto;
}

/* TYPOGRAPHY */

h1,h2,h3{
font-family:'Cormorant Garamond',serif;
font-weight:600;
color:var(--charcoal);
}

h1{
font-size:4.5rem;
line-height:1.1;
margin-bottom:30px;
}

h2{
font-size:3rem;
margin-bottom:30px;
}

h3{
font-size:1.8rem;
margin-bottom:15px;
}

p{
margin-bottom:20px;
}

section{
padding:100px 0;
}

/* NAVIGATION */

nav{
width:90%;
max-width:1200px;
margin:0 auto;
padding:40px 0;

display:flex;
justify-content:space-between;
align-items:center;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:var(--charcoal);
font-weight:500;
transition:.3s;
}

nav a:hover{
opacity:.6;
}

/* LOGO */

.logo{
display:flex;
flex-direction:column;
line-height:1;
}

.logo .small{
font-size:0.8rem;
letter-spacing:4px;
font-weight:600;
}

.logo .large{
font-family:'Cormorant Garamond',serif;
font-size:2rem;
}

/* HERO */

.hero{
min-height:90vh;
display:flex;
flex-direction:column;
}

.hero-content{
max-width:850px;
margin:auto;
text-align:center;
padding:40px 20px 100px;
}

.lead{
font-size:1.5rem;
font-weight:300;
margin-bottom:25px;
}

/* BUTTON */

.button{
display:inline-block;
margin-top:25px;
padding:14px 34px;

background:var(--charcoal);
color:white;

text-decoration:none;
transition:.3s;
}

.button:hover{
opacity:.9;
}

/* PHILOSOPHY */

.philosophy{
border-top:1px solid var(--stone);
background:white;
}

/* SERVICES */

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:50px;
}

.card{
background:white;
padding:40px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
transition:.3s;
}

.card:hover{
transform:translateY(-4px);
}

/* EXPERIENCE */

.experience{
background:white;
}

.experience-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:50px;
}

.experience-card{
background:var(--ivory);
padding:35px;
border-radius:8px;
border:1px solid var(--stone);
}

/* ABOUT */

.about{
background:var(--ivory);
}

/* NETWORK */

.network{
background:white;
}

/* VALUES */

.values-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.value-card{
background:white;
padding:30px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.value-card h3{
margin-bottom:10px;
}

/* CONTACT */

.contact{
background:var(--charcoal);
color:white;
text-align:center;
}

.contact h2{
color:white;
}

.contact a{
color:white;
}

/* FOOTER */

footer{
background:#181c19;
color:white;
text-align:center;
padding:30px;
font-size:0.9rem;
}

/* MOBILE */

@media(max-width:768px){

nav{
flex-direction:column;
gap:20px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

h1{
font-size:3rem;
}

h2{
font-size:2.3rem;
}

.lead{
font-size:1.2rem;
}

.hero-content{
padding-bottom:60px;
}

section{
padding:70px 0;
}

}
