:root {
    --nx-bg: #f5f3ef;
    --nx-surface: #ffffff;
    --nx-ink: #0d1b2a;
    --nx-mute: #6b7280;
    --nx-gold: #b8975a;
    --nx-gold-light: #f5edd8;
    --nx-border: #e5e2db;
    --nx-r: 4px
}

.nx-single {
    padding: 0 0 96px;
    color: var(--nx-ink);
    width: 100%;
}

.nx-hero {
    position: relative;
    background: #000;
    display: grid;
    grid-template-columns: minmax(0, 1.68fr) 240px;
    height: 520px
}

.nx-hero__main {
    overflow: hidden;
    cursor: pointer
}

.nx-hero__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.25, .46, .45, .94);
    display: block
}

.nx-hero__main:hover img {
    transform: scale(1.03)
}

.nx-hero__strip {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden
}

.nx-hero__strip__thumb {
    overflow: hidden;
    flex: 1 1 0;
    cursor: pointer;
    position: relative
}

.nx-hero__strip__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
    filter: brightness(.88)
}

.nx-hero__strip__thumb:hover img {
    transform: scale(1.05);
    filter: brightness(1)
}

.nx-hero__strip__thumb.nx-more {
    position: relative
}

.nx-hero__strip__thumb.nx-more::after {
    content: attr(data-more);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 27, 42, .6);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .04em
}

.nx-hero__mobile-thumbs {
    display: none;
    gap: 6px;
    overflow-x: auto;
    padding: 10px 0 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(13, 27, 42, .18) transparent
}

.nx-hero__mobile-thumb {
    position: relative;
    display: block;
    flex: 0 0 90px;
    height: 68px;
    overflow: hidden;
    cursor: pointer;
    background: #d7d7d7
}

.nx-hero__mobile-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.nx-hero__mobile-thumb.nx-more::after {
    content: attr(data-more);
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, .56);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .04em
}

.nx-hero__cta {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--nx-border);
    color: var(--nx-ink);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, border-color .2s
}
@media (min-width: 1400px) {
    .nx-hero__cta {
        right: 260px;
    }
}

.nx-hero__cta:hover {
    background: var(--nx-gold-light);
    border-color: var(--nx-gold);
    color: var(--nx-ink);
}

.nx-body {
    padding: 36px 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start
}

.nx-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--nx-gold);
    margin: 0 0 10px
}

.nx-title-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 14px;
}

.nx-cat-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(184, 151, 90, .36);
    background: var(--nx-gold-light);
    color: var(--nx-ink);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color .2s, color .2s, transform .2s;
}

.nx-cat-badge:hover {
    border-color: var(--nx-gold);
    color: var(--nx-gold);
    transform: translateY(-1px);
}

.nx-title {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.5px
}

.nx-location {
    margin: 0 0 24px;
    font-size: .85rem;
    color: var(--nx-mute);
    display: flex;
    align-items: center;
    gap: 6px
}

.nx-location svg {
    width: 13px;
    height: 13px
}

.nx-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--nx-border);
    background: var(--nx-surface);
    margin: 0 0 32px
}

.nx-stat {
    padding: 18px 14px;
    border-right: 1px solid var(--nx-border);
    text-align: center
}

.nx-stat:last-child {
    border-right: none
}

.nxi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--nx-gold);
    margin-bottom: 6px
}

.nxi svg {
    width: 100%;
    height: 100%;
    overflow: visible
}

.nx-stat .nxi {
    display: block;
    margin: 0 auto 7px
}

.nx-stat__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--nx-mute)
}

.nx-stat__val {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 3px;
    color: var(--nx-ink)
}

.nx-content {
    font-size: .97rem;
    line-height: 1.75;
    color: #374151;
}

.nx-content p {
    margin: 0 0 1em
}

.nx-groups {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
    border: 1px solid var(--nx-border)
}

.nx-group {
    background: var(--nx-surface)
}

.nx-group__head {
    padding: 14px 20px;
    border-bottom: 1px solid var(--nx-border);
    display: flex;
    align-items: baseline;
    gap: 12px
}

.nx-group__head h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-size: .8rem;
    color: var(--nx-ink)
}

.nx-group__head p {
    margin: 0;
    font-size: .8rem;
    color: var(--nx-mute)
}

.nx-group__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

.nx-field-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--nx-border);
    border-right: 1px solid var(--nx-border)
}

.nx-field-row:nth-child(even) {
    border-right: none
}

.nx-field-row:last-child, .nx-field-row:nth-last-child(2):not(:nth-child(even)) {
    border-bottom: none
}

.nx-field-row .nxi {
    flex-shrink: 0;
    margin-top: 2px
}

.nx-field-row__label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--nx-mute);
    margin-bottom: 3px
}

.nx-field-row__val {
    font-size: .9rem;
    font-weight: 600;
    color: var(--nx-ink)
}

.nx-rep {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px
}
.nx-field-row__content {
    width: 100%;
}
.nx-field-row__label {
    margin-bottom: 10px;
}
.nx-rep-row {
    display: flex;
    font-size: .8rem;
    color: var(--nx-ink);
}
.nx-rep-row .nx-rep-row__val {
    flex-basis: 50%;
    border-left: 1px solid rgba(184, 151, 90, .18);
} 
.nx-rep-row__val.rr-feature {
    font-weight: bold;
}

.nx-sidebar {
    position: sticky;
    top: 24px
}

.nx-price-card {
    background: var(--nx-ink);
    color: #fff;
    padding: 28px;
    margin-bottom: 3px
}

.nx-price-card__price {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1
}

.nx-price-card__note {
    margin: 6px 0 20px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .55)
}

.nx-price-card__cta {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--nx-gold);
    color: var(--nx-ink);
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
    cursor: pointer;
    border: none
}

.nx-price-card__cta:hover {
    background: #caa96e
}

.nx-contact-card {
    background: var(--nx-surface);
    border: 1px solid var(--nx-border);
    padding: 20px;
    margin-bottom: 3px
}

.nx-contact-card__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--nx-mute);
    margin-bottom: 5px
}

.nx-contact-card__val {
    font-size: .9rem;
    font-weight: 600
}

.nx-contact-card__val a {
    color: var(--nx-ink);
    text-decoration: none
}

.nx-contact-card__val a:hover {
    color: var(--nx-gold)
}

.nx-charter-badge {
    background: var(--nx-gold-light);
    border: 1px solid var(--nx-gold);
    padding: 12px 20px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--nx-gold);
    text-align: center;
    margin-bottom: 3px
}

.nx-taxonomy-card {
    background: var(--nx-surface);
    border: 1px solid var(--nx-border);
    padding: 20px;
    margin-bottom: 3px;
}

.nx-taxonomy-card__label {
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--nx-mute);
}

.nx-taxonomy-card__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nx-cat-badge--sidebar {
    min-height: 32px;
}

.nx-lb {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    background: rgba(5, 10, 20, .93)
}

.nx-lb.is-open {
    display: flex;
    flex-direction: column;
    animation: nxFadeIn .22s ease
}

.nx-lb__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.nx-lb__counter {
    color: rgba(255, 255, 255, .6);
    font-size: .82rem;
    letter-spacing: .06em
}

.nx-lb__close {
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    padding: 8px 16px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s
}

.nx-lb__close:hover {
    background: rgba(255, 255, 255, .2)
}

.nx-lb__stage {
    display: flex;
    flex: 1;
    min-height: 0;
    gap: 0
}

.nx-lb__thumbs {
    width: 88px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
    padding: 2px;
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .2) transparent
}

.nx-lb__thumb {
    padding: 0;
    background: transparent;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0
}

.nx-lb__thumb img {
    display: block;
    width: 100%;
    height: 64px;
    object-fit: cover;
    filter: brightness(.7);
    transition: filter .2s
}

.nx-lb__thumb.is-active {
    border-color: var(--nx-gold)
}

.nx-lb__thumb.is-active img, .nx-lb__thumb:hover img {
    filter: brightness(1)
}

.nx-lb__viewer {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.nx-lb__img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    animation: nxImgIn .28s ease
}

.nx-lb__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background .2s;
    border-radius: 0
}

.nx-lb__nav:hover {
    background: rgba(255, 255, 255, .22)
}

.nx-lb__prev {
    left: 12px
}

.nx-lb__next {
    right: 12px
}

body.nx-lb-open {
    overflow: hidden
}

@keyframes nxFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes nxImgIn {
    from {
        opacity: .2;
        transform: scale(.96)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@media(max-width:980px) {
    .nx-hero {
        grid-template-columns: 1fr;
        height: auto
    }

    .nx-hero__strip {
        display: none
    }

    .nx-hero__main {
        height: 360px
    }

    .nx-hero__mobile-thumbs {
        display: flex
    }

    .nx-body {
        padding: 24px 20px;
        grid-template-columns: 1fr
    }

    .nx-sidebar {
        position: static
    }

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

    .nx-body {
        gap: 24px
    }
}

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

    .nx-group__body {
        grid-template-columns: 1fr
    }

    .nx-field-row {
        border-right: none
    }

    .nx-lb__thumbs {
        width: 64px
    }

    .nx-lb__thumb img {
        height: 48px
    }

    .nx-hero__main {
        height: 260px
    }

    .nx-hero__mobile-thumb {
        flex-basis: 76px;
        height: 58px
    }
}