/* ================================================= */
/* Global */
/* ================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #F8F6F2;
    color: #222;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: .25s ease;
}

.container {
    width: min(1120px, calc(100% - 80px));
    margin-inline: auto;
}

section {
    padding: 3.5rem 0;
}

h1,
h2,
h3,
p {
    margin: 0;
}

/* ================================================= */
/* Typography */
/* ================================================= */

h1 {
    font-size: clamp(4rem, 8vw, 6.5rem);
    line-height: .95;
    font-weight: 600;
    letter-spacing: -.05em;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -.03em;
}

h3 {
    font-size: .95rem;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -.01em;
}

.lead {
    font-size: 1.35rem;
    line-height: 1.55;
    color: #111;
}

p {
    font-size: .95rem;
    line-height: 1.65;
    color: #444;
}

p + p {
    margin-top: 1.75rem;
}

.label {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #8B6F47;
}

/* ================================================= */
/* Shared Components */
/* ================================================= */

.section-header {
    margin-bottom: 3rem;
}

.section-number {
    display: inline-block;
    margin-bottom: 1rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: #8B6F47;
}

.section-content {
    max-width: 1000px;
}

hr {
    border: 0;
    border-top: 1px solid #DDD8D0;
    margin: 3.5rem 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 2.5rem;
    padding: 1rem 2rem;

    border: 1px solid #222;
    background: transparent;

    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    transition:
        background .25s,
        color .25s,
        border-color .25s;
}

.button:hover {
    background: #8B6F47;
    border-color: #8B6F47;
    color: #F8F6F2;
}

/* ================================================= */
/* Header */
/* ================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(248,246,242,.94);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid #E6E1D9;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 82px;
}

.logo {
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    gap: 2.5rem;
}

.site-nav a {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #444;
}

.site-nav a:hover {
    color: #8B6F47;
}
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px 0;
    background: #222;
}

@media (max-width: 768px) {

    .site-header .container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 82px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        display: none;

        position: absolute;
        top: 82px;
        left: 0;
        right: 0;

        flex-direction: column;
        gap: 0;

        background: #F8F6F2;
        border-top: 1px solid #DDD8D0;
        border-bottom: 1px solid #DDD8D0;
    }

    .site-nav a {
        padding: 1rem 0;
        text-align: center;
        border-bottom: 1px solid #EEE8DF;
    }

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

}
/* ================================================= */
/* Hero */
/* ================================================= */

.hero {
    padding: 2rem 0;
}

.hero-content {
    max-width: 1000px;
}

.hero-deck {
    max-width: 1000px;
    margin: 2rem 0;
    font-size: 1.35rem;
    line-height: 1.45;
    color: #8B6F47;
}

.hero::after {
    content: "";
    display: block;
    height: 1px;
    margin-top: 6rem;
    background: #DDD8D0;
}
/* ================================================= */
/* Hero Capabilities */
/* ================================================= */

.hero-capabilities {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;

    margin: 1.5rem 0 3rem;

    padding-top: 1.5rem;
    border-top: 1px solid #DDD8D0;
}

.hero-capability h3 {
    margin-bottom: .85rem;
}

.hero-capability p {
    margin: 0;
}

@media (max-width: 1000px) {

    .hero-capabilities {
        grid-template-columns: 1fr;
        gap: 2rem;

        margin: 3rem 0;
        padding-top: 2rem;
    }

}

/* ================================================= */
/* Selected Engagements */
/* ================================================= */

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem 3.5rem;

    width: 100%;
    margin-top: 2rem;
}

.engagement h3 {
    margin-bottom: .5rem;
}

.engagement-category {
    margin-bottom: .9rem;

    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #8B6F47;
}

.engagement p:last-child {
    margin: 0;
}

/* ================================================= */
/* Perspectives */
/* ================================================= */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem 3.5rem;

    width: 100%;
    max-width: 1000px;
    margin-top: 2rem;
}

.article-card img {
    object-position: 20% center;
    margin-bottom: 0;
}

.article-card h3 {
    margin-bottom: 1rem;
}

.article-card p {
    margin-bottom: 1rem;
}
.image-credit {
    font-size: 0.5rem;
    color: #8a8a8a;
    letter-spacing: 0.03em;
}
.read-more {
    margin-top: 1rem;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #8B6F47;
}

/* ================================================= */
/* About */
/* ================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.about-text p + p {
    margin-top: 1.8rem;
}

.about-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

    margin-top: 3rem;
    padding-top: 3rem;

    border-top: 1px solid #DDD8D0;
}

.about-detail h3 {
    margin-bottom: .85rem;
}

.about-detail p {
    margin: 0;
    line-height: 1.6;
}

.about-detail p + p {
    margin-top: .35rem;
}

.about-text .button {
    margin-top: 3rem;
}

@media (max-width: 1000px) {

    .about-grid {
        grid-template-columns: 1fr;
        row-gap: 3rem;
    }

    .about-image {
        max-width: 340px;
        margin: 0 auto;
    }

    .about-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

}
/* ================================================= */
/* Contact */
/* ================================================= */

.contact {
    padding-bottom: 7rem;
}

.contact .section-content {
    max-width: 850px;
}

/* ================================================= */
/* Responsive */
/* ================================================= */

@media (max-width: 768px) {

    .container {
        width: calc(100% - 32px);
    }

    h1 {
        font-size: 3.1rem;
        line-height: 1;
    }

    .hero-deck {
        font-size: 1.15rem;
    }

    .hero::after {
        margin-top: 3rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .engagement-grid,
    .articles-grid,
    .about-grid,
    .about-details {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 300px;
        margin: 2rem auto;
    }
}