

:root{
    --pp-cream: #faf6ee;
    --pp-ink: #2b2420;
    --pp-ink-soft: #6b6259;
    --pp-line: rgba(43,36,32,0.12);
    --font-pp-sans: "League Spartan Variable", var(--font-sans);
}

body.home-template .pp-nav{
    background: var(--pp-cream);
    border-bottom: 1px solid var(--pp-line);
    position: relative;
    z-index: 20;
}
body.home-template .pp-nav-inner{
    position: relative;
    height: 80px;
}

body.home-template .pp-nav-links{
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    min-width: 0;
}
body.home-template .pp-nav-links .nav{
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.home-template .pp-nav-links .nav-item{
    
    display: flex;
    align-items: center;
    line-height: normal;
    margin: 0;
    padding-left: 0;
}
body.home-template .pp-nav-links .nav-item-link{
    font-family: var(--font-pp-sans);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1;
    color: #212121;
    text-decoration: none;
    background: none;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    vertical-align: middle;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}
body.home-template .pp-nav-links .nav-item-link:hover{
    color: var(--pp-ink-soft);
}
body.home-template .pp-nav-links .nav-arrow{
    transition: transform .2s ease;
}
body.home-template .pp-nav-links .nav-has-dropdown.is-open .nav-arrow{
    transform: rotate(180deg);
}
body.home-template .pp-nav-links .nav-dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 18px;
    background: var(--pp-cream);
    border: 1px solid var(--pp-line);
    border-radius: 4px;
    min-width: 200px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
body.home-template .pp-nav-links .nav-has-dropdown{
    position: relative;
}
body.home-template .pp-nav-links .nav-has-dropdown.is-open .nav-dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s;
}
body.home-template .pp-nav-links .nav-dropdown-link{
    display: block;
    padding: 8px 18px;
    font-family: var(--font-pp-sans);
    font-size: 14px;
    color: var(--pp-ink);
    text-decoration: none;
}
body.home-template .pp-nav-links .nav-dropdown-link:hover{
    background: var(--pp-line);
}

body.home-template .pp-nav-logo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-pp-sans);
    font-weight: 700;
    font-size: 20px;
    color: var(--pp-ink);
    text-decoration: none;
}
body.home-template .pp-nav-logo img{
    height: 28px;
    width: auto;
    display: block;
}

body.home-template .pp-nav-actions{
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
}
body.home-template .pp-nav-icon-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    color: var(--pp-ink);
    cursor: pointer;
}
body.home-template .pp-nav-icon-btn:hover{
    color: var(--pp-ink-soft);
}

body.home-template .pp-nav-burger{
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}
body.home-template .pp-nav-burger-lines{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 15px;
}
body.home-template .pp-nav-burger-line{
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--pp-ink);
    transition: transform .3s ease;
}

.people-menu-open .pp-nav-burger-line:nth-child(1){ transform: translateY(6.5px); }
.people-menu-open .pp-nav-burger-line:nth-child(3){ transform: translateY(-6.5px); }

body.home-template .pp-hero{
    position: relative;
    width: 100%;
    
    height: calc(100vh - 60px);
    min-height: 520px;
    overflow: hidden;
    background: var(--pp-ink);
}
body.home-template .pp-hero-track{
    position: relative;
    width: 100%;
    height: 100%;
}
body.home-template .pp-hero-slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease;
}
body.home-template .pp-hero-slide.is-active{
    opacity: 1;
    visibility: visible;
}
body.home-template .pp-hero-slide-media{
    position: absolute;
    inset: 0;
}
body.home-template .pp-hero-slide-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
body.home-template .pp-hero-slide-content{
    position: absolute;
    left: 60px;
    bottom: 64px;
    max-width: 480px;
    z-index: 2;
}
body.home-template .pp-hero-slide-title{
    font-family: var(--font-pp-sans);
    font-weight: 600;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.15;
    color: #fff;
    margin: 0 0 14px;
}
body.home-template .pp-hero-slide-subtitle{
    font-family: var(--font-pp-sans);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin: 0 0 28px;
}
body.home-template .pp-hero-slide-cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--pp-ink);
    font-family: var(--font-pp-sans);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 16px 40px;
    transition: background .2s ease;
}
body.home-template .pp-hero-slide-cta:hover{
    background: var(--pp-cream);
}

body.home-template .pp-hero-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}
body.home-template .pp-hero-arrow-prev{ left: 24px; }
body.home-template .pp-hero-arrow-next{ right: 24px; }
body.home-template .pp-hero-arrow:hover{ opacity: 0.7; }

body.home-template .pp-hero-pagination{
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.home-template .pp-hero-pagination-item{
    display: block;
    font-family: var(--font-pp-sans);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color .2s ease;
}
body.home-template .pp-hero-pagination-item.is-active{
    color: #fff;
    font-weight: 700;
}

@media (max-width: 900px){
    body.home-template .pp-nav-links{ display: none; }
    body.home-template .pp-nav-burger{ display: flex; }
    body.home-template .pp-nav-inner{ padding: 14px 20px; }
    body.home-template .pp-hero-slide-content{ left: 24px; bottom: 48px; max-width: calc(100% - 48px); }
    body.home-template .pp-hero{ height: calc(100vh - 80px); min-height: 440px; }
}

.people-mobile-menu{
    background: var(--pp-cream);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
.people-mobile-nav-link,
.people-mobile-nav-toggle,
.people-mobile-nav-toggle__label,
.people-mobile-nav-toggle__link{
    color: var(--pp-ink);
    font-family: var(--font-pp-sans);
}
.people-mobile-nav-item{
    border-bottom: 1px solid var(--pp-line);
}
.people-mobile-menu__footer{
    border-top: 1px solid var(--pp-line);
}
.people-mobile-menu__footer .gh-head-button{
    background: var(--pp-ink);
    color: var(--pp-cream);
    font-family: var(--font-pp-sans);
    font-weight: 600;
    border-radius: 999px;
    padding: 10px 22px;
}
.people-mobile-menu__footer .gh-head-link{
    color: var(--pp-ink);
    font-family: var(--font-pp-sans);
}
