:root {
    --pgd-red: #c8102e;
    --pgd-dark: #151719;
    --pgd-text: #202124;
    --pgd-muted: #6b7075;
    --pgd-background: #ffffff;
    --pgd-light: #f5f6f6;

    --pgd-container: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--pgd-background);
    color: var(--pgd-text);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.content-container,
.site-header__inner,
.site-footer__inner {
    width: min(
        calc(100% - 48px),
        var(--pgd-container)
    );

    margin-inline: auto;
}


/* HEADER */

.site-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.site-header__inner {
    min-height: 88px;

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

    gap: 40px;
}

.site-branding__link {
    text-decoration: none;
}

.site-branding__name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .02em;
}


/* NAVIGATION */

.primary-menu {
    display: flex;
    align-items: center;
    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.primary-menu a {
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
}

.primary-menu a:hover {
    color: var(--pgd-red);
}


/* MOBILE BUTTON */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--pgd-dark);
}


/* HOMEPAGE TEMP */

.home-placeholder {
    min-height: 600px;

    display: flex;
    align-items: center;

    background: var(--pgd-light);
}

.home-placeholder h1 {
    max-width: 800px;

    margin: 0;

    font-size: clamp(48px, 7vw, 92px);
    line-height: .98;
    letter-spacing: -.045em;
}

.eyebrow {
    margin-bottom: 20px;

    color: var(--pgd-red);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
}


/* FOOTER */

.site-footer {
    padding: 60px 0;

    background: var(--pgd-dark);
    color: #fff;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.site-footer p {
    color: #b7bbbe;
}

.site-footer__copyright {
    color: #b7bbbe;
}


/* ACCESSIBILITY */

.screen-reader-text {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    white-space: nowrap;
    border: 0;
}


/* MOBILE */

@media (max-width: 900px) {

    .content-container,
    .site-header__inner,
    .site-footer__inner {
        width: min(
            calc(100% - 32px),
            var(--pgd-container)
        );
    }

    .site-header__inner {
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .primary-navigation {
        display: none;

        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        padding: 24px;

        background: #fff;

        border-top: 1px solid #eee;

        z-index: 1000;
    }

    .primary-navigation.is-open {
        display: block;
    }

    .primary-menu {
        display: block;
    }

    .primary-menu li {
        margin: 0;
    }

    .primary-menu a {
        display: block;

        padding: 12px 0;

        font-size: 17px;
    }

    .site-footer__inner {
        flex-direction: column;
    }
}