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

body {
    font-family: 'Inter', sans-serif;
    background: #f9f7f3;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    width: 88%;
    max-width: 1200px;
    margin: auto;
}

/* NAV */

.nav {
    display: flex;
    justify-content: space-between;
    padding: 28px 6%;
    background: #f9f7f3;
    position: fixed;
    width: 100%;
}

.logo span {
    color: #1e3a8a;
}

.links a {
    margin-left: 40px;
    text-decoration: none;
    color: #444;
}

/* HERO */

.hero {
    padding: 180px 6% 120px;
}

.hero-inner {
    max-width: 800px;
}

.tag {
    margin-bottom: 20px;
    color: #1e3a8a;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.accent {
    color: #1e3a8a;
    font-family: 'Fraunces', serif;
    font-style: italic;
}

.lead {
    font-size: 1.2rem;
    color: #555;
}

/* WORK */

.work {
    padding: 100px 0 140px;
}

.section-title {
    margin-bottom: 70px;
    font-size: 1.8rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.card {
    padding: 60px;
    background: white;
    border-radius: 20px;
    border: 1px solid #ece8e1;
    transition: 0.3s ease;
}

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

.card.large {
    grid-column: span 2;
}

/* ABOUT */

.about {
    padding: 140px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.numbers strong {
    font-size: 2.5rem;
    display: block;
    color: #1e3a8a;
}

/* CONTACT */

.contact {
    padding: 120px 0;
}

.contact a {
    font-size: 1.3rem;
    color: #1e3a8a;
    text-decoration: none;
}

footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}
