:root {
    --navy: #0b1f33;
    --navy-light: #16324f;
    --teal: #18a6a6;
    --teal-light: #63d4d4;
    --off-white: #f7f9fb;
    --text: #263746;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Urbanist", sans-serif; 
    color: var(--text);
    background: var(--off-white);
}

.site-header {
    background: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 8%;
}

.logo {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.08rem;
}

.logo span {
    color: var(--teal-light);
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    color: var(--teal-light);
}

.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
    padding: 5rem 2rem;
}

.eyebrow {
    color: var(--teal);
    font-weight: bold;
    letter-spacing: 0.15rem;
}

h1 {
    color: var(--navy);
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin: 0.5rem 0;
}

h1 span {
    color: var(--teal);
}

.intro {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 650px;
}

.button {
    background: var(--navy);
    color: white;
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    margin-top: 1.5rem;
    width: fit-content;
    border-radius: 4px;
}

.button:hover {
    background: var(--teal);
}

.projects {
    background: white;
    padding: 5rem max(8%, calc((100% - 1000px) / 2));
}

.projects h2 {
    color: var(--navy);
    font-size: 2rem;
}

footer {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 1.5rem;
}