:root {
    --black: #060606;
    --rich: #0c0c0c;
    --graphite: #111;
    --g2: #1a1a1a;
    --g3: #252525;
    --g4: #303030;
    --gold: #b89b6a;
    --gold-l: #d4b483;
    --gold-p: #e8d5b0;
    --gold-dim: rgba(184, 155, 106, .15);
    --gold-line: rgba(184, 155, 106, .22);
    --white: #f4f1ea;
    --off: #ece8df;
    --gr1: #8a8680;
    --gr2: #6b6760;
    --gr3: #4a4640;
    --fd: 'Cormorant Garamond', Georgia, serif;
    --fb: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1)
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--fb);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

::selection {
    background: var(--gold-dim);
    color: var(--gold-p)
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: var(--black)
}

::-webkit-scrollbar-thumb {
    background: var(--g3)
}

.grain {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 160px
}

#loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .7s ease, visibility .7s ease
}

#loader.out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.l-name {
    font-family: var(--fd);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: .1em;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0;
    animation: lFade .5s .2s both
}

.l-name span {
    color: var(--gold)
}

.l-track {
    width: 100px;
    height: 1px;
    background: var(--g3);
    overflow: hidden
}

.l-fill {
    height: 100%;
    background: var(--gold);
    animation: lBar 1.1s var(--ease) forwards
}

@keyframes lBar {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes lFade {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.75rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding .5s var(--ease), background .5s ease, border-color .4s ease;
    border-bottom: 1px solid transparent
}

#nav.solid {
    padding: 1rem 3.5rem;
    background: rgba(6, 6, 6, .9);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-color: rgba(184, 155, 106, .07)
}

.n-brand {
    font-family: var(--fd);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    letter-spacing: .06em
}

.n-brand span {
    color: var(--gold)
}

.n-links {
    display: flex;
    align-items: center;
    gap: 2.5rem
}

.n-link {
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, .6);
    text-decoration: none;
    transition: color .3s
}

.n-link:hover {
    color: var(--white)
}

.n-cta {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: .55rem 1.4rem;
    border-radius: 1px;
    text-decoration: none;
    transition: background .3s, transform .3s var(--ease), box-shadow .3s
}

.n-cta:hover {
    background: var(--gold-l);
    color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(184, 155, 106, .3)
}

.n-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001
}

.n-burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
    transition: all .35s var(--ease)
}

.n-burger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.n-burger.open span:nth-child(2) {
    opacity: 0
}

.n-burger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

.n-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: rgba(6, 6, 6, .97);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 6rem 2.5rem 2.5rem;
    border-left: 1px solid rgba(184, 155, 106, .08);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    display: flex;
    flex-direction: column
}

.n-drawer.open {
    transform: translateX(0)
}

.d-link {
    font-family: var(--fd);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: color .3s
}

.d-link:hover {
    color: var(--gold-l)
}

.d-cta {
    margin-top: 2rem;
    display: block;
    text-align: center;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: .875rem;
    border-radius: 1px;
    text-decoration: none
}

#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

#hv {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0
}

.h-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(6, 6, 6, .25) 0%, rgba(6, 6, 6, .55) 50%, rgba(6, 6, 6, .82) 100%), linear-gradient(to right, rgba(6, 6, 6, .38) 0%, transparent 55%)
}

.h-bline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, var(--gold-line), transparent)
}

.h-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 900px
}

.h-ey {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: hUp .8s var(--ease) 1.3s both
}

.h-h1 {
    font-family: var(--fd);
    font-size: clamp(3.2rem, 7vw, 7.5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.025em;
    color: var(--white);
    margin: 1.25rem 0 1.75rem;
    opacity: 0;
    animation: hUp 1s var(--ease) 1.5s both
}

.h-h1 em {
    font-style: italic;
    color: var(--gold-l)
}

.h-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(244, 241, 234, .72);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 2.75rem;
    opacity: 0;
    animation: hUp .9s var(--ease) 1.7s both
}

.h-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: hUp .9s var(--ease) 1.9s both
}

.h-scroll {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    opacity: 0;
    animation: lFade .8s 2.6s both
}

.h-scroll span {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, .38)
}

.h-sline {
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, var(--gold-line), transparent);
    animation: sPulse 2.2s ease-in-out infinite
}

@keyframes sPulse {

    0%,
    100% {
        opacity: .4
    }

    50% {
        opacity: 1
    }
}

@keyframes hUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.btn-g {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: .9rem 2.1rem;
    border-radius: 1px;
    text-decoration: none;
    border: none;
    transition: background .3s, transform .35s var(--ease), box-shadow .3s;
    cursor: pointer
}

.btn-g:hover {
    background: var(--gold-l);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 155, 106, .3)
}

.btn-o {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    padding: .875rem 2rem;
    border: 1px solid rgba(244, 241, 234, .35);
    border-radius: 1px;
    text-decoration: none;
    transition: all .35s var(--ease);
    cursor: pointer
}

.btn-o:hover {
    border-color: var(--gold);
    color: var(--gold-l);
    background: rgba(184, 155, 106, .06);
    transform: translateY(-2px)
}

.eyebrow {
    font-size: .64rem;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    display: block
}

.lrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem
}

.lrow .eyebrow {
    flex-shrink: 0
}

.lrow .lline {
    flex: 1;
    height: 1px;
    max-width: 80px;
    background: linear-gradient(90deg, var(--gold-line), transparent)
}

.si {
    max-width: 1280px;
    margin: 0 auto;
    padding: 7.5rem 3.5rem
}

.si-sm {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5.5rem 3.5rem
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(184, 155, 106, .08);
    border-bottom: 1px solid rgba(184, 155, 106, .08);
    background: var(--rich)
}

.sc {
    padding: 3.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(184, 155, 106, .07);
    transition: background .3s
}

.sc:last-child {
    border-right: none
}

.sc:hover {
    background: rgba(184, 155, 106, .04)
}

.sn {
    font-family: var(--fd);
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--gold-l);
    line-height: 1;
    margin-bottom: .35rem
}

.sl {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gr2)
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .04);
    border-left: 1px solid rgba(255, 255, 255, .04)
}

.di {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    position: relative;
    overflow: hidden;
    transition: background .4s ease
}

.di::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease)
}

.di:hover {
    background: rgba(184, 155, 106, .04)
}

.di:hover::before {
    transform: scaleX(1)
}

.di-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    opacity: .75;
    margin-bottom: 1.5rem
}

.di-title {
    font-family: var(--fd);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: .7rem
}

.di-text {
    font-size: .875rem;
    font-weight: 300;
    color: var(--gr1);
    line-height: 1.8
}

.stband {
    padding: 6.5rem 3.5rem;
    text-align: center;
    border-top: 1px solid rgba(184, 155, 106, .08);
    border-bottom: 1px solid rgba(184, 155, 106, .08);
    background: var(--graphite);
    position: relative;
    overflow: hidden
}

.stband::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184, 155, 106, .05) 0%, transparent 70%);
    pointer-events: none
}

.stquote {
    font-family: var(--fd);
    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -.015em;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.stquote em {
    font-style: italic;
    color: var(--gold-l)
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px
}

.s-media {
    position: relative;
    overflow: hidden;
    background: var(--g2)
}

.s-media::after {
    content: '';
    position: absolute;
    inset: 1.5rem;
    border: 1px solid rgba(184, 155, 106, .12);
    pointer-events: none;
    z-index: 1
}

.s-ph {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--g3) 0%, var(--g2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

.s-ph svg {
    opacity: .18;
    color: var(--gold)
}

.s-ph p {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gr3)
}

.s-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5.5rem 5rem
}

.a-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 4.5rem
}

.a-list {
    display: flex;
    flex-direction: column
}

.a-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    cursor: default;
    position: relative
}

.a-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.a-row::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    right: -3.5rem;
    top: 0;
    bottom: 0;
    background: rgba(184, 155, 106, .04);
    opacity: 0;
    transition: opacity .3s
}

.a-row:hover::before {
    opacity: 1
}

.a-num {
    font-family: var(--fd);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(184, 155, 106, .38);
    min-width: 2.2rem
}

.a-name {
    font-family: var(--fd);
    font-size: 1.65rem;
    font-weight: 300;
    color: var(--white);
    flex: 1;
    line-height: 1.2;
    transition: color .3s
}

.a-row:hover .a-name {
    color: var(--gold-l)
}

.a-desc {
    font-size: .82rem;
    font-weight: 300;
    color: var(--gr1);
    max-width: 300px;
    line-height: 1.7
}

.a-arr {
    width: 18px;
    height: 18px;
    color: var(--gold);
    opacity: 0;
    flex-shrink: 0;
    transition: opacity .3s, transform .3s var(--ease)
}

.a-row:hover .a-arr {
    opacity: .7;
    transform: translateX(4px)
}

.p-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.p-grid::before {
    content: '';
    position: absolute;
    top: 19px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent)
}

.ps {
    padding: 0 2.25rem;
    padding-top: 3.5rem;
    position: relative
}

.ps:first-child {
    padding-left: 0
}

.ps:last-child {
    padding-right: 0
}

.ps-dot {
    position: absolute;
    top: 0;
    left: calc(2.25rem - 9px);
    width: 18px;
    height: 18px;
    border: 1px solid rgba(184, 155, 106, .4);
    border-radius: 50%;
    background: var(--graphite);
    display: flex;
    align-items: center;
    justify-content: center
}

.ps:first-child .ps-dot {
    left: -9px
}

.ps:last-child .ps-dot {
    left: auto;
    right: -9px
}

.ps-dot::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%
}

.ps-n {
    font-family: var(--fd);
    font-size: .875rem;
    color: rgba(184, 155, 106, .45);
    margin-bottom: .75rem
}

.ps-t {
    font-family: var(--fd);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: .6rem;
    line-height: 1.3
}

.ps-d {
    font-size: .825rem;
    font-weight: 300;
    color: var(--gr1);
    line-height: 1.75
}

.dep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px
}

.dep-card {
    background: var(--g2);
    padding: 2.75rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, .04);
    position: relative;
    overflow: hidden;
    transition: background .4s ease, transform .4s var(--ease)
}

.dep-card:hover {
    background: var(--g3);
    transform: translateY(-3px)
}

.dep-q {
    font-family: var(--fd);
    font-size: 5.5rem;
    font-weight: 300;
    color: rgba(184, 155, 106, .09);
    line-height: 1;
    position: absolute;
    top: .5rem;
    right: 1.75rem;
    font-style: italic;
    user-select: none
}

.dep-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1.25rem
}

.dep-star {
    font-size: .68rem;
    color: var(--gold)
}

.dep-text {
    font-family: var(--fd);
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: var(--off);
    line-height: 1.72;
    margin-bottom: 2rem
}

.dep-line {
    width: 28px;
    height: 1px;
    background: rgba(184, 155, 106, .35);
    margin-bottom: 1.25rem
}

.dep-name {
    font-size: .875rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: .04em
}

.dep-role {
    font-size: .72rem;
    color: var(--gr2);
    margin-top: .2rem;
    letter-spacing: .04em
}

.ctaband {
    padding: 7.5rem 3.5rem;
    text-align: center;
    background: var(--graphite);
    position: relative;
    overflow: hidden
}

.ctaband::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(184, 155, 106, .06) 0%, transparent 70%);
    pointer-events: none
}

.cta-h {
    font-family: var(--fd);
    font-size: clamp(2.25rem, 4.5vw, 4.75rem);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -.015em;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1
}

.cta-h em {
    font-style: italic;
    color: var(--gold-l)
}

.cta-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gr1);
    line-height: 1.75;
    max-width: 480px;
    margin: 0 auto 2.75rem;
    position: relative;
    z-index: 1
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.con-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5.5rem;
    align-items: start
}

.con-title {
    font-family: var(--fd);
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem
}

.con-title em {
    font-style: italic;
    color: var(--gold-l)
}

.cinfo {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    margin-bottom: 1.25rem
}

.cinfo-ic {
    color: var(--gold);
    opacity: .7;
    flex-shrink: 0;
    margin-top: 2px
}

.cinfo-tx {
    font-size: .875rem;
    font-weight: 300;
    color: var(--gr1);
    line-height: 1.6
}

.cinfo-lb {
    font-size: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gr3);
    display: block;
    margin-bottom: .2rem
}

.fbox {
    background: var(--g2);
    border: 1px solid rgba(184, 155, 106, .09);
    border-radius: 3px;
    padding: 3rem
}

.fl {
    margin-bottom: 1.25rem
}

.fl label {
    display: block;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gr2);
    margin-bottom: .45rem
}

.fi {
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 2px;
    padding: .75rem 1rem;
    font-family: var(--fb);
    font-size: .9375rem;
    font-weight: 300;
    color: var(--white);
    outline: none;
    transition: border-color .3s, box-shadow .3s;
    -webkit-appearance: none
}

.fi::placeholder {
    color: var(--gr3)
}

.fi:focus {
    border-color: rgba(184, 155, 106, .35);
    box-shadow: 0 0 0 3px rgba(184, 155, 106, .06)
}

.fi.err {
    border-color: rgba(220, 80, 80, .45)
}

.ferr {
    font-size: .7rem;
    color: #e07070;
    margin-top: .3rem;
    display: none
}

.ferr.show {
    display: block
}

.fsuc {
    text-align: center;
    padding: 2.5rem 1rem;
    display: none
}

.fsuc.show {
    display: block
}

.fsuc-ck {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold)
}

.fsuc h3 {
    font-family: var(--fd);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: .5rem
}

.fsuc p {
    font-size: .875rem;
    color: var(--gr1)
}

#footer {
    background: var(--rich);
    border-top: 1px solid rgba(184, 155, 106, .08)
}

.ft {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5.5rem 3.5rem 3.5rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
    gap: 3rem
}

.fb-brand {
    font-family: var(--fd);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: .04em
}

.fb-brand span {
    color: var(--gold)
}

.fb-tag {
    font-size: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gr3);
    margin: .3rem 0 1rem
}

.fb-blurb {
    font-size: .85rem;
    font-weight: 300;
    color: var(--gr1);
    line-height: 1.75;
    max-width: 260px;
    margin-bottom: 1.5rem
}

.oab-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gr2);
    border: 1px solid rgba(184, 155, 106, .15);
    padding: .3rem .75rem;
    border-radius: 1px
}

.fh {
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem
}

.fl2 {
    display: block;
    font-size: .85rem;
    font-weight: 300;
    color: var(--gr1);
    text-decoration: none;
    margin-bottom: .6rem;
    transition: color .3s
}

.fl2:hover {
    color: var(--white)
}

.fb2 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 3.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .04);
    flex-wrap: wrap;
    gap: 1rem
}

.fcp {
    font-size: .72rem;
    color: var(--gr3);
    letter-spacing: .04em
}

.wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem
}

.wa-tip {
    background: var(--g2);
    border: 1px solid rgba(184, 155, 106, .2);
    border-radius: 2px;
    padding: .4rem .875rem;
    font-size: .72rem;
    color: var(--white);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(6px);
    transition: all .3s var(--ease);
    pointer-events: none
}

.wa:hover .wa-tip {
    opacity: 1;
    transform: none
}

.wa-btn {
    width: 52px;
    height: 52px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(184, 155, 106, .3), 0 2px 8px rgba(0, 0, 0, .4);
    transition: all .35s var(--ease);
    animation: waPulse 3s ease-in-out infinite
}

.wa-btn:hover {
    background: var(--gold-l);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 28px rgba(184, 155, 106, .4);
    animation: none
}

.wa-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--black)
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(184, 155, 106, .3), 0 2px 8px rgba(0, 0, 0, .4)
    }

    50% {
        box-shadow: 0 4px 28px rgba(184, 155, 106, .5), 0 2px 10px rgba(0, 0, 0, .4)
    }
}

.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .85s var(--ease), transform .85s var(--ease)
}

.rvl {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .85s var(--ease), transform .85s var(--ease)
}

.rvr {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .85s var(--ease), transform .85s var(--ease)
}

.rv.on,
.rvl.on,
.rvr.on {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .1s !important
}

.d2 {
    transition-delay: .2s !important
}

.d3 {
    transition-delay: .3s !important
}

.d4 {
    transition-delay: .4s !important
}

@media(max-width:1100px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .p-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem
    }

    .p-grid::before {
        display: none
    }

    .ps {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0
    }

    .ps-dot {
        position: static;
        margin-bottom: 1rem
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr)
    }

    .ft {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:900px) {

    #nav,
    #nav.solid {
        padding: 1.1rem 1.5rem
    }

    .si,
    .si-sm {
        padding: 5rem 1.5rem
    }

    .stband,
    .ctaband {
        padding: 4.5rem 1.5rem
    }

    .split {
        grid-template-columns: 1fr
    }

    .s-media {
        min-height: 380px
    }

    .s-body {
        padding: 3.5rem 1.5rem
    }

    .a-header {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .a-desc {
        display: none
    }

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

    .dep-grid {
        grid-template-columns: 1fr
    }

    .n-links {
        display: none
    }

    .n-burger {
        display: flex
    }
}

@media(max-width:640px) {
    .diff-grid {
        grid-template-columns: 1fr
    }

    .p-grid {
        grid-template-columns: 1fr
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr)
    }

    .ft {
        grid-template-columns: 1fr
    }

    .fb2 {
        flex-direction: column;
        text-align: center
    }

    .h-btns {
        flex-direction: column;
        align-items: center
    }

    .fbox {
        padding: 1.75rem 1.25rem
    }

    .cta-btns {
        flex-direction: column;
        align-items: center
    }
}