@import "https://cdn.jsdelivr.net/npm/@fontsource/open-sans@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/open-sans@latest/700.css";

html {
    box-sizing: border-box
}

*,
::before,
::after {
    box-sizing: inherit
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh
}

.pghead {
    position: relative;
    background-color: #141010;
    border-bottom: 2px solid #B67444;
    z-index: 100
}

.pghead::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg, #b674440a 0px, #b674440a 1px, transparent 1px, transparent 12px);
    pointer-events: none
}

.headband {
    max-width: 1366px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.brandrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.brandmark {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    flex-shrink: 0
}

.logoborder {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 1px solid #ffffffd9;
    background-color: #ffffff0f;
    box-shadow: 2px 3px 3px 1px #b6744414 2px 4px 28px 1px #b6744417;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0
}

.logoborder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.brandname {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #F1E9DF;
    letter-spacing: -.3px;
    line-height: 1.2
}

.brandname span {
    color: #B67444
}

.headcontact {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0
}

.hclink {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #DA9DA2;
    text-decoration: none;
    letter-spacing: .3px;
    line-height: 1.45;
    border: 2px solid #da9da24d;
    border-radius: 6px;
    padding: 8px 16px;
    transition: color .25s ease-out, border-color .18s ease-out;
    white-space: nowrap
}

.hclink:hover {
    color: #F1E9DF;
    border-color: #DA9DA2
}

.hclink:focus-visible {
    outline: 2px solid #B67444;
    outline-offset: 3px
}

.menurow {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap
}

.menurow a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #F1E9DF;
    text-decoration: none;
    letter-spacing: .4px;
    line-height: 1.45;
    padding: 8px 16px;
    border-radius: 6px;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s ease-out, border-color .22s ease-out, background-color .2s ease-out;
    white-space: nowrap;
    min-height: 44px
}

.menurow a:hover {
    color: #B67444;
    border-color: #b6744466;
    background-color: #b6744412
}

.menurow a:focus-visible {
    outline: 2px solid #DA9DA2;
    outline-offset: 2px
}

.menurow a svg {
    flex-shrink: 0;
    opacity: .75
}

.menurow a:hover svg {
    opacity: 1
}

.divline {
    width: 1px;
    height: 20px;
    background-color: #f1e9df26;
    margin: 0 4px;
    flex-shrink: 0
}

@media (max-width: 1024px) {
    .headband {
        padding: 16px
    }

    .brandname {
        font-size: 19px
    }

    .headcontact {
        gap: 8px
    }
}

@media (max-width: 640px) {
    .headcontact {
        display: none
    }

    .brandrow {
        justify-content: flex-start
    }

    .menurow {
        gap: 4px
    }

    .menurow a {
        font-size: 14px;
        padding: 8px
    }

    .divline {
        display: none
    }
}

.pgfoot {
    background-color: #0e0b0b;
    border-top: 2px solid #b6744459;
    position: relative
}

.pgfoot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #B67444, #DA9DA2, #B67444, transparent);
    opacity: .5;
    pointer-events: none
}

.footband {
    max-width: 1366px;
    margin: 0 auto;
    padding: 40px 40px 16px
}

.footgrid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.footbrand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 0 auto
}

.footlogolink {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none
}

.footlogoborder {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 1px solid #ffffffb3;
    background-color: #ffffff0d;
    box-shadow: 2px 3px 3px 1px #b6744414;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0
}

.footlogoborder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.footbrandname {
    font-family: 'Open Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #F1E9DF;
    line-height: 1.2;
    letter-spacing: -.2px
}

.footbrandname span {
    color: #B67444
}

.footdesc {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #f1e9df8c;
    line-height: 1.65;
    letter-spacing: .2px;
    max-width: 280px
}

.footcols {
    display: flex;
    gap: 80px;
    flex-wrap: wrap
}

.footcol {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footcollabel {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #B67444;
    letter-spacing: .8px;
    line-height: 1.2;
    text-transform: uppercase
}

.footlinks {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footlinks a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #f1e9dfb3;
    text-decoration: none;
    letter-spacing: .2px;
    line-height: 1.45;
    transition: color .2s ease-out;
    min-height: 44px;
    display: flex;
    align-items: center
}

.footlinks a:hover {
    color: #DA9DA2
}

.footlinks a:focus-visible {
    outline: 2px solid #B67444;
    outline-offset: 2px;
    border-radius: 2px
}

.footcontactlist {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footcontactlist a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #f1e9dfb3;
    text-decoration: none;
    letter-spacing: .2px;
    line-height: 1.45;
    transition: color .2s ease-out;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px
}

.footcontactlist a:hover {
    color: #DA9DA2
}

.footcontactlist a:focus-visible {
    outline: 2px solid #B67444;
    outline-offset: 2px;
    border-radius: 2px
}

.footcontactlist a svg {
    flex-shrink: 0;
    opacity: .6
}

.footbottom {
    border-top: 1px solid #b674442e;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.footcopy {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #f1e9df66;
    letter-spacing: .2px;
    line-height: 1.45
}

.footlegal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.footlegal a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #f1e9df66;
    text-decoration: none;
    letter-spacing: .2px;
    line-height: 1.45;
    transition: color .22s ease-out
}

.footlegal a:hover {
    color: #DA9DA2
}

.footlegal a:focus-visible {
    outline: 2px solid #B67444;
    outline-offset: 2px;
    border-radius: 2px
}

@media (max-width: 1024px) {
    .footband {
        padding: 40px 16px 16px
    }

    .footcols {
        gap: 40px
    }
}

@media (max-width: 640px) {
    .footgrid {
        flex-direction: column;
        gap: 40px
    }

    .footcols {
        gap: 40px
    }

    .footbottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }
}

.ckbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a0f0a;
    border-top: 2px solid #B67444;
    z-index: 1200;
    box-shadow: 2px 10px 40px 1px #b674441a
}

.ckinner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.cktext {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #f1e9dfcc;
    line-height: 1.65;
    letter-spacing: .2px;
    flex: 1 1 auto
}

.cktext a {
    color: #DA9DA2;
    text-decoration: underline;
    transition: color .2s ease-out
}

.cktext a:hover {
    color: #F1E9DF
}

.ckactions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap
}

.ckbtn {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    line-height: 1.2;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid #B67444;
    background-color: #B67444;
    color: #141010;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    transition: background-color .25s ease-out, color .2s ease-out
}

.ckbtn:hover {
    background-color: #DA9DA2;
    border-color: #DA9DA2;
    color: #141010
}

.ckbtn:focus-visible {
    outline: 2px solid #F1E9DF;
    outline-offset: 2px
}

.ckbtnout {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    line-height: 1.2;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid #b6744480;
    background-color: transparent;
    color: #F1E9DF;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    transition: border-color .22s ease-out, color .2s ease-out
}

.ckbtnout:hover {
    border-color: #DA9DA2;
    color: #DA9DA2
}

.ckbtnout:focus-visible {
    outline: 2px solid #F1E9DF;
    outline-offset: 2px
}

.ckpanel {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px 16px
}

.cktogglerow {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: #b6744412;
    border-radius: 6px;
    border: 1px solid #b6744433
}

.cktogglabel {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #f1e9dfcc;
    line-height: 1.45;
    flex: 1 1 auto
}

.cktoggle {
    width: 40px;
    height: 22px;
    border-radius: 20px;
    border: 2px solid #b6744466;
    background-color: #b6744426;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color .2s ease-out, border-color .18s ease-out;
    box-shadow: inset 0 2px 4px #b674441f
}

.cktoggle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 20px;
    background-color: #f1e9df80;
    transition: transform .2s ease-out, background-color .18s ease-out
}

.cktoggle.on {
    background-color: #B67444;
    border-color: #B67444
}

.cktoggle.on::after {
    transform: translateX(18px);
    background-color: #F1E9DF
}

.cktoggle:focus-visible {
    outline: 2px solid #DA9DA2;
    outline-offset: 2px
}

@media (max-width: 640px) {
    .ckinner {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start
    }

    .ckpanel {
        padding: 0 16px 16px
    }

    .ckactions {
        width: 100%
    }
}

.policy-section {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #111009;
    color: #F1E9DF;
    line-height: 1.65;
    font-size: 19px
}

.policy-section p {
    margin-top: 0;
    margin-bottom: 16px;
    color: #F1E9DF;
    line-height: 1.65;
    font-size: 19px;
    letter-spacing: .01em
}

.policy-section strong,
.policy-section b {
    color: #DA9DA2;
    font-weight: 700;
    letter-spacing: .005em
}

.policy-section hr {
    border: none;
    border-top: 2px solid #B67444;
    margin-top: 40px;
    margin-bottom: 40px;
    opacity: .35
}

.policy-section div {
    margin-bottom: 16px
}

.policy-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.45;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 4px 28px 1px #b6744417
}

.policy-section thead {
    background-color: #1e1710
}

.policy-section thead tr {
    border-bottom: 2px solid #B67444
}

.policy-section tbody tr {
    border-bottom: 1px solid #b674442e;
    transition: background-color .2s ease-out
}

.policy-section tbody tr:last-child {
    border-bottom: none
}

.policy-section tbody tr:hover {
    background-color: #b674440f
}

.policy-section th {
    padding: 16px;
    text-align: left;
    color: #DA9DA2;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background-color: #1e1710
}

.policy-section td {
    padding: 16px;
    color: #F1E9DF;
    font-size: 14px;
    line-height: 1.65;
    vertical-align: top;
    background-color: #161209
}

@media (max-width: 1024px) {
    .policy-section {
        padding: 80px 40px;
        font-size: 19px
    }
}

@media (max-width: 640px) {
    .policy-section {
        padding: 40px 16px;
        font-size: 14px
    }

    .policy-section p {
        font-size: 14px
    }

    .policy-section table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 6px
    }

    .policy-section th,
    .policy-section td {
        padding: 8px;
        font-size: 14px;
        min-width: 120px
    }
}

.blgd {
    background-color: #141210;
    color: #F1E9DF;
    max-width: 1366px;
    margin: 0 auto;
    overflow: hidden
}

.blgd .titblk {
    position: relative;
    padding: 80px 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    background: linear-gradient(to right, #1a1108, #141210)
}

.blgd .titblk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B67444' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0
}

.blgd .titblk .txtzone {
    position: relative;
    z-index: 1
}

.blgd .titblk .qmark {
    position: absolute;
    top: 40px;
    left: 60px;
    font-size: 320px;
    line-height: 1.2;
    color: #B67444;
    opacity: .06;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -8px
}

.blgd .titblk .meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px
}

.blgd .titblk .tag {
    display: inline-block;
    padding: 4px 16px;
    border: 2px solid #B67444;
    border-radius: 2px;
    font-size: 14px;
    line-height: 1.45;
    color: #B67444;
    letter-spacing: .08em;
    text-transform: uppercase
}

.blgd .titblk .rtime {
    font-size: 14px;
    line-height: 1.45;
    color: #DA9DA2;
    letter-spacing: .04em
}

.blgd .titblk .arttitle {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #F1E9DF;
    margin-bottom: 16px;
    text-transform: uppercase
}

.blgd .titblk .artdesc {
    font-size: 19px;
    line-height: 1.65;
    color: #c9bfb3;
    max-width: 520px
}

.blgd .titblk .authrow {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #b6744433;
    border-left: 4px solid #B67444;
    padding-left: 16px
}

.blgd .titblk .authname {
    font-size: 14px;
    line-height: 1.45;
    color: #DA9DA2;
    letter-spacing: .06em
}

.blgd .titblk .imgzone {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 10px 40px 1px #b674441a
}

.blgd .titblk .imgzone img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: sepia(0.35) contrast(1.08) brightness(0.88) saturate(0.85);
    transition: filter .45s ease-out
}

.blgd .titblk .imgzone:hover img {
    filter: sepia(0.15) contrast(1.05) brightness(0.92) saturate(0.95)
}

.blgd .titblk .imgzone::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #14121066, transparent);
    pointer-events: none
}

.blgd .artbody {
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 80px;
    align-items: start;
    background: #141210
}

.blgd .artbody .prose {
    min-width: 0
}

.blgd .artbody .prose .ptxt {
    font-size: 19px;
    line-height: 1.65;
    color: #d4c9bc;
    margin-bottom: 16px
}

.blgd .artbody .prose .h2style {
    font-size: 24px;
    line-height: 1.45;
    color: #F1E9DF;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -.01em
}

.blgd .artbody .prose .h3style {
    font-size: 19px;
    line-height: 1.45;
    color: #DA9DA2;
    margin-top: 40px;
    margin-bottom: 8px;
    letter-spacing: .01em
}

.blgd .artbody .prose mark {
    background: #b674442e;
    color: #B67444;
    padding: 2px 6px;
    border-radius: 2px
}

.blgd .artbody .prose cite {
    font-style: italic;
    color: #DA9DA2
}

.blgd .artbody .prose blockquote {
    margin: 40px 0;
    padding: 16px 40px;
    border-left: 4px solid #B67444;
    border-right: 1px solid #b6744433;
    background: #b674440f;
    border-radius: 0 6px 6px 0
}

.blgd .artbody .prose blockquote p,
.blgd .artbody .prose blockquote .ptxt {
    font-size: 19px;
    line-height: 1.65;
    color: #F1E9DF;
    margin-bottom: 0
}

.blgd .artbody .prose ul,
.blgd .artbody .prose ol {
    margin: 16px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.blgd .artbody .prose ul li,
.blgd .artbody .prose ol li {
    font-size: 19px;
    line-height: 1.65;
    color: #d4c9bc;
    background: #f1e9df0a;
    border: 1px solid #b6744426;
    border-radius: 6px;
    padding: 8px 16px;
    position: relative;
    padding-left: 40px
}

.blgd .artbody .prose ul li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #B67444;
    border-radius: 2px
}

.blgd .artbody .prose ol {
    counter-reset: listcount
}

.blgd .artbody .prose ol li {
    counter-increment: listcount
}

.blgd .artbody .prose ol li::before {
    content: counter(listcount);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #B67444;
    font-weight: 700
}

.blgd .artbody .prose figure {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 4px 28px 1px #b6744417
}

.blgd .artbody .prose figure img {
    width: 100%;
    display: block;
    object-fit: cover;
    filter: sepia(0.2) contrast(1.05) brightness(0.9)
}

.blgd .artbody .prose figcaption {
    font-size: 14px;
    line-height: 1.45;
    color: #9a8f85;
    padding: 8px 16px;
    background: #b674440f;
    letter-spacing: .03em
}

.blgd .artbody .sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 40px
}

.blgd .artbody .sidebar .ednotice {
    background: #b6744414;
    border: 1px solid #b6744440;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 2px 3px 3px 1px #b6744414
}

.blgd .artbody .sidebar .ednotice .entitle {
    font-size: 14px;
    line-height: 1.45;
    color: #B67444;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.blgd .artbody .sidebar .ednotice .entxt {
    font-size: 14px;
    line-height: 1.65;
    color: #9a8f85
}

.blgd .artbody .sidebar .heatgrid {
    background: #1c1712;
    border: 1px solid #da9da226;
    border-radius: 12px;
    padding: 16px
}

.blgd .artbody .sidebar .heatgrid .hgtitle {
    font-size: 14px;
    line-height: 1.45;
    color: #DA9DA2;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.blgd .artbody .sidebar .heatgrid .hgsubtitle {
    font-size: 14px;
    line-height: 1.45;
    color: #9a8f85;
    margin-bottom: 8px
}

.blgd .artbody .sidebar .hggrid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px
}

.blgd .artbody .sidebar .hgcell {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 2px;
    transition: opacity .25s ease-out
}

.blgd .artbody .sidebar .hgcell:hover {
    opacity: .7
}

.blgd .artbody .sidebar .hgcell.lvl0 {
    background: #b6744414
}

.blgd .artbody .sidebar .hgcell.lvl1 {
    background: #b6744440
}

.blgd .artbody .sidebar .hgcell.lvl2 {
    background: #b6744480
}

.blgd .artbody .sidebar .hgcell.lvl3 {
    background: #b67444bf
}

.blgd .artbody .sidebar .hgcell.lvl4 {
    background: #b67444ff
}

.blgd .artbody .sidebar .hglegend {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px
}

.blgd .artbody .sidebar .hglegend .lgcell {
    width: 12px;
    height: 12px;
    border-radius: 2px
}

.blgd .artbody .sidebar .hglegend .lglabel {
    font-size: 14px;
    color: #9a8f85;
    margin-left: 4px
}

.blgd .artbody .sidebar .navlink {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid #B67444;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.45;
    color: #B67444;
    text-decoration: none;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-align: center;
    background: transparent;
    transition: background .2s ease-out, color .2s ease-out;
    box-shadow: 2px 3px 3px 1px #b6744414
}

.blgd .artbody .sidebar .navlink:hover {
    background: #b674441f;
    color: #F1E9DF
}

.blgd .artbody .sidebar .navlink:focus {
    outline: 2px solid #DA9DA2;
    outline-offset: 4px
}

.blgd .bottomband {
    padding: 40px 80px;
    background: #1c1712;
    border-top: 1px solid #b674442e;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.blgd .bottomband .disclaim {
    font-size: 14px;
    line-height: 1.65;
    color: #9a8f85;
    max-width: 640px
}

.blgd .bottomband .disclaim strong {
    color: #DA9DA2
}

.blgd .bottomband .bloglink {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid #DA9DA2;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.45;
    color: #DA9DA2;
    text-decoration: none;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: transparent;
    white-space: nowrap;
    transition: background .35s ease-out, color .18s ease-out;
    box-shadow: 2px 4px 28px 1px #da9da217
}

.blgd .bottomband .bloglink:hover {
    background: #da9da21a;
    color: #F1E9DF
}

.blgd .bottomband .bloglink:focus {
    outline: 2px solid #B67444;
    outline-offset: 4px
}

@media (max-width: 1024px) {
    .blgd .titblk {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px
    }

    .blgd .titblk .qmark {
        font-size: 200px;
        top: 20px;
        left: 20px
    }

    .blgd .titblk .arttitle {
        font-size: 40px
    }

    .blgd .titblk .imgzone {
        display: none
    }

    .blgd .artbody {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px
    }

    .blgd .artbody .sidebar {
        position: static
    }

    .blgd .bottomband {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 16px
    }
}

@media (max-width: 640px) {
    .blgd .titblk {
        padding: 40px 16px
    }

    .blgd .titblk .arttitle {
        font-size: 24px
    }

    .blgd .titblk .qmark {
        font-size: 120px
    }

    .blgd .artbody {
        padding: 40px 16px
    }

    .blgd .artbody .prose .ptxt,
    .blgd .artbody .prose ul li,
    .blgd .artbody .prose ol li {
        font-size: 14px
    }

    .blgd .bottomband {
        padding: 40px 16px
    }
}

.blgd .titblk .txtzone,
.blgd .artbody .prose,
.blgd .artbody .sidebar {
    animation: fadeup .45s ease-out both
}

.blgd .artbody .prose {
    animation-delay: .15s
}

.blgd .artbody .sidebar {
    animation-delay: .25s
}

.blgd .bottomband {
    animation: fadeup .35s ease-out .3s both
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.ld {
    background-color: #141210;
    color: #F1E9DF;
    overflow-x: hidden;
    position: relative
}

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

.ld .wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px
}

.ld .divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #B67444 30%, #DA9DA2 70%, transparent);
    margin: 0
}

.ld .divider.thick {
    height: 2px
}

.ld .divider.xthick {
    height: 3px
}

.ld .diamond {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #B67444;
    transform: rotate(45deg);
    margin: 0 8px;
    vertical-align: middle;
    flex-shrink: 0
}

.ld .tophero {
    position: relative;
    padding: 40px 0;
    border-bottom: 1px solid #b674442e;
    overflow: hidden
}

.ld .tophero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, #b674440a 0px, #b674440a 1px, transparent 1px, transparent 60px), repeating-linear-gradient(0deg, #b6744408 0px, #b6744408 1px, transparent 1px, transparent 60px);
    pointer-events: none
}

.ld .herorow {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 1
}

.ld .herotxt {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center
}

.ld .herolabel {
    font-size: 14px;
    letter-spacing: .12em;
    color: #B67444;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.ld .herolabel span {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #B67444
}

.ld .heroh1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #F1E9DF;
    text-transform: uppercase;
    margin: 0
}

.ld .heroh1 em {
    font-style: normal;
    color: #B67444
}

.ld .herodesc {
    font-size: 19px;
    line-height: 1.65;
    color: #c9bfb4;
    max-width: 560px;
    margin: 0
}

.ld .heroside {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 260px
}

.ld .sidecard {
    background: #b6744412;
    border: 1px solid #b6744433;
    border-radius: 6px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color .25s ease-out, box-shadow .35s ease-out
}

.ld .sidecard:hover {
    border-color: #b6744480;
    box-shadow: 2px 4px 28px 1px #b6744417
}

.ld .sidecard h4 {
    font-size: 14px;
    letter-spacing: .06em;
    color: #DA9DA2;
    margin: 0;
    text-transform: uppercase
}

.ld .sidecard p {
    font-size: 14px;
    line-height: 1.65;
    color: #a89e95;
    margin: 0
}

.ld .sidecard .scnum {
    font-size: 62px;
    line-height: 1.2;
    color: #b6744426;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1
}

.ld .postarea {
    padding: 80px 0 40px
}

.ld .postlabel {
    font-size: 14px;
    letter-spacing: .1em;
    color: #B67444;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px
}

.ld .postgrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start
}

.ld .postmain {
    display: flex;
    flex-direction: column;
    gap: 0
}

.ld .postcard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #f1e9df1a;
    border-radius: 12px;
    overflow: hidden;
    background: #b674440a;
    transition: box-shadow .4s ease-out, transform .2s ease-out
}

.ld .postcard:hover {
    box-shadow: 2px 10px 40px 1px #b674441a;
    transform: translateY(-2px) perspective(600px) rotateX(0.5deg)
}

.ld .postimgwrap {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0
}

.ld .postimgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s ease-out
}

.ld .postcard:hover .postimgwrap img {
    transform: scale(1.04)
}

.ld .postimgwrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, #141210b3);
    pointer-events: none
}

.ld .postbody {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ld .posttag {
    font-size: 14px;
    letter-spacing: .08em;
    color: #DA9DA2;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.ld .posth2 {
    font-size: 24px;
    line-height: 1.45;
    letter-spacing: -.01em;
    color: #F1E9DF;
    margin: 0
}

.ld .postdesc {
    font-size: 14px;
    line-height: 1.65;
    color: #a89e95;
    margin: 0
}

.ld .postmeta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #7a6f67;
    flex-wrap: wrap
}

.ld .postlink {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: .06em;
    color: #B67444;
    text-decoration: none;
    border-bottom: 2px solid #b6744466;
    padding-bottom: 2px;
    transition: border-color .2s ease-out, color .2s ease-out
}

.ld .postlink:hover {
    color: #DA9DA2;
    border-color: #DA9DA2
}

.ld .postsec {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ld .postcard.small {
    flex-direction: column
}

.ld .postcard.small .postimgwrap {
    height: 160px;
    border-radius: 12px 12px 0 0
}

.ld .editorial {
    padding: 80px 0;
    background: linear-gradient(to right, #b6744417, transparent);
    border-top: 1px solid #b674441f;
    border-bottom: 2px solid #da9da226
}

.ld .edrow {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: start
}

.ld .edleft {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ld .edh2 {
    font-size: 24px;
    line-height: 1.45;
    letter-spacing: -.01em;
    color: #F1E9DF;
    margin: 0
}

.ld .edsubtxt {
    font-size: 14px;
    line-height: 1.65;
    color: #a89e95;
    margin: 0
}

.ld .edright {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ld .editem {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: start;
    padding: 16px;
    border: 1px solid #f1e9df14;
    border-radius: 6px;
    background: #14121099;
    transition: border-color .3s ease-out
}

.ld .editem:hover {
    border-color: #b6744459
}

.ld .ednum {
    font-size: 62px;
    line-height: 1;
    color: #b674441f;
    font-weight: 700;
    letter-spacing: -.04em;
    min-width: 56px;
    text-align: right;
    flex-shrink: 0
}

.ld .editxt {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ld .editxt h5 {
    font-size: 19px;
    line-height: 1.45;
    color: #F1E9DF;
    margin: 0
}

.ld .editxt p {
    font-size: 14px;
    line-height: 1.65;
    color: #a89e95;
    margin: 0
}

.ld .editxt a {
    font-size: 14px;
    color: #B67444;
    text-decoration: none;
    border-bottom: 1px solid #b6744459;
    transition: color .2s ease-out
}

.ld .editxt a:hover {
    color: #DA9DA2
}

.ld .rhythm {
    padding: 80px 0
}

.ld .rhythmrow {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: start
}

.ld .rhythmimg {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #b6744433;
    box-shadow: 2px 4px 28px 1px #b6744417
}

.ld .rhythmimg img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s ease-out
}

.ld .rhythmimg:hover img {
    transform: scale(1.03)
}

.ld .rhythmimg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, #14121099);
    pointer-events: none
}

.ld .rhythmtxt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ld .rhythmh2 {
    font-size: 24px;
    line-height: 1.45;
    color: #F1E9DF;
    margin: 0;
    letter-spacing: -.01em
}

.ld .rhythmbody {
    font-size: 19px;
    line-height: 1.65;
    color: #c9bfb4;
    margin: 0
}

.ld .rhythmbody small {
    font-size: 14px;
    color: #7a6f67;
    display: block;
    margin-top: 8px
}

.ld .topiclist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ld .topiclist li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #c9bfb4;
    background: #b674440f;
    border: 1px solid #b6744424;
    border-radius: 6px;
    padding: 8px 16px
}

.ld .topiclist li .diam {
    width: 5px;
    height: 5px;
    background: #B67444;
    transform: rotate(45deg);
    flex-shrink: 0
}

.ld .worth {
    padding: 80px 0;
    position: relative
}

.ld .worth::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(./landing_images/04_duplicate.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: .08;
    pointer-events: none
}

.ld .worthrow {
    display: flex;
    flex-direction: row;
    gap: 40px;
    position: relative;
    z-index: 1
}

.ld .worthleft {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ld .worthh2 {
    font-size: 24px;
    line-height: 1.45;
    letter-spacing: -.01em;
    color: #F1E9DF;
    margin: 0
}

.ld .worthbody {
    font-size: 19px;
    line-height: 1.65;
    color: #c9bfb4;
    margin: 0
}

.ld .worthquote {
    font-size: 19px;
    line-height: 1.65;
    color: #B67444;
    border-left: 3px solid #B67444;
    border-top: 1px solid #b6744440;
    padding: 16px;
    border-radius: 0 6px 6px 0;
    background: #b674440f;
    margin: 0
}

.ld .worthright {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ld .worthcard {
    background: #141210d9;
    border: 1px solid #f1e9df1a;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow .35s ease-out, transform .2s ease-out
}

.ld .worthcard:hover {
    box-shadow: 2px 3px 3px 1px #b6744414;
    transform: perspective(800px) rotateY(-1deg) translateX(2px)
}

.ld .worthcard h5 {
    font-size: 14px;
    letter-spacing: .06em;
    color: #DA9DA2;
    text-transform: uppercase;
    margin: 0
}

.ld .worthcard p {
    font-size: 14px;
    line-height: 1.65;
    color: #a89e95;
    margin: 0
}

.ld .convo {
    padding: 80px 0;
    border-top: 3px solid #b6744440
}

.ld .convorow {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: start
}

.ld .convoleft {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ld .convoh2 {
    font-size: 24px;
    line-height: 1.45;
    color: #F1E9DF;
    margin: 0
}

.ld .convobody {
    font-size: 14px;
    line-height: 1.65;
    color: #a89e95;
    margin: 0
}

.ld .convoportrait {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: #b674440f;
    border: 1px solid #b674442e;
    border-radius: 12px
}

.ld .portraitimg {
    width: 64px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #b674444d
}

.ld .portraitimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.ld .portraitinfo {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ld .portraitinfo strong {
    font-size: 14px;
    color: #F1E9DF
}

.ld .portraitinfo span {
    font-size: 14px;
    color: #7a6f67
}

.ld .convoright {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ld .convform {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ld .convform input,
.ld .convform textarea {
    background: #141210e6;
    border: 1px solid #f1e9df26;
    border-radius: 6px;
    padding: 16px;
    font-size: 14px;
    color: #F1E9DF;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color .2s ease-out, box-shadow .25s ease-out;
    box-shadow: inset 1px 2px 4px #b674440d
}

.ld .convform input::placeholder,
.ld .convform textarea::placeholder {
    color: #5a5149
}

.ld .convform input:focus,
.ld .convform textarea:focus {
    border-color: #b6744480;
    box-shadow: inset 1px 2px 4px #b6744414 0 0 0 2px #b674441a
}

.ld .convform textarea {
    min-height: 120px;
    resize: vertical
}

.ld .convbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: .08em;
    color: #B67444;
    background: transparent;
    border: 2px solid #B67444;
    border-radius: 2px;
    padding: 16px 40px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background .2s ease-out, color .2s ease-out;
    align-self: flex-start
}

.ld .convbtn:hover {
    background: #b674441f;
    color: #F1E9DF
}

.ld .convbtn:focus {
    outline: 2px solid #B67444;
    outline-offset: 3px
}

.ld .convbtn:active {
    background: #b6744433
}

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

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes ldReveal1 {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes ldReveal2 {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes ldReveal3 {
    from {
        opacity: 0;
        transform: translateY(44px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.ld .herolabel {
    animation: ldReveal0 .35s ease-out both
}

.ld .heroh1 {
    animation: ldReveal1 .38s ease-out .08s both
}

.ld .herodesc {
    animation: ldReveal2 .4s ease-out .16s both
}

.ld .heroside {
    animation: ldReveal3 .42s ease-out .24s both
}

.ld .postarea {
    animation: ldReveal2 .45s ease-out .3s both
}

@media (max-width: 1024px) {

    .ld .herorow,
    .ld .postgrid,
    .ld .edrow,
    .ld .rhythmrow,
    .ld .worthrow,
    .ld .convorow {
        flex-direction: column
    }

    .ld .heroh1 {
        font-size: 40px
    }

    .ld .postgrid {
        grid-template-columns: 1fr
    }

    .ld .heroside {
        flex-direction: row;
        flex-wrap: wrap
    }

    .ld .sidecard {
        flex: 1;
        min-width: 200px
    }
}

@media (max-width: 640px) {
    .ld .wrap {
        padding: 0 16px
    }

    .ld .heroh1 {
        font-size: 24px
    }

    .ld .rhythmimg,
    .ld .postimgwrap {
        display: none
    }

    .ld .heroside {
        display: none
    }

    .ld .tophero {
        padding: 40px 0
    }

    .ld .postarea,
    .ld .editorial,
    .ld .rhythm,
    .ld .worth,
    .ld .convo {
        padding: 40px 0
    }

    .ld .edrow,
    .ld .rhythmrow,
    .ld .worthrow,
    .ld .convorow {
        gap: 16px
    }
}

.infog {
    background-color: #111009;
    overflow-x: clip;
    position: relative
}

.infog .blur-reveal {
    animation: blurIn .45s ease-out both
}

@keyframes blurIn {
    from {
        opacity: 0;
        filter: blur(8px)
    }

    to {
        opacity: 1;
        filter: blur(0)
    }
}

.infog .blur-reveal-slow {
    animation: blurIn .38s ease-out .15s both
}

.infog .divider-dash {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 40px;
    overflow: hidden
}

.infog .divider-dash span {
    display: inline-block;
    background: #B67444;
    opacity: .35
}

.infog .divider-dash span.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0
}

.infog .divider-dash span.dash {
    width: 16px;
    height: 2px;
    border-radius: 2px;
    flex-shrink: 0
}

.infog .block-a {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    align-items: start
}

.infog .block-a-img-zone {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px
}

.infog .img-main {
    grid-column: 1 / 3;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 260px
}

.infog .img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(0.4) saturate(1.2) hue-rotate(0deg);
    transition: transform .45s ease-out
}

.infog .img-main:hover img {
    transform: scale(1.03)
}

.infog .img-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #b674442e 0%, #111009b8 100%);
    border-radius: 12px;
    pointer-events: none
}

.infog .img-accent-a {
    background: #1e1a12;
    border-radius: 12px;
    border: 1px solid #b674442e;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.infog .img-accent-b {
    background: linear-gradient(135deg, #b674441f 0%, transparent 100%);
    border-radius: 12px;
    border: 1px solid #da9da226;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.infog .acc-label {
    font-size: 14px;
    line-height: 1.45;
    color: #B67444;
    letter-spacing: .06em;
    text-transform: uppercase
}

.infog .acc-val {
    font-size: 24px;
    line-height: 1.2;
    color: #F1E9DF;
    letter-spacing: -.01em
}

.infog .acc-sub {
    font-size: 14px;
    line-height: 1.45;
    color: #f1e9df8c;
    letter-spacing: .02em
}

.infog .read-arrow {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, #B67444, transparent);
    pointer-events: none
}

.infog .block-a-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 16px;
    border-left: 3px solid #B67444
}

.infog .pg-label {
    font-size: 14px;
    line-height: 1.45;
    color: #DA9DA2;
    letter-spacing: .1em;
    text-transform: uppercase
}

.infog .pg-h1 {
    font-size: 62px;
    line-height: 1.2;
    color: #F1E9DF;
    letter-spacing: -.025em;
    text-transform: uppercase;
    margin: 0
}

.infog .pg-h1 em {
    font-style: normal;
    color: #B67444
}

.infog .pg-lead {
    font-size: 19px;
    line-height: 1.65;
    color: #f1e9dfcc;
    margin: 0
}

.infog .pg-thesis {
    font-size: 14px;
    line-height: 1.65;
    color: #f1e9df99;
    margin: 0;
    padding: 8px 16px;
    border-left: 2px solid #da9da266;
    background: #da9da20d;
    border-radius: 0 6px 6px 0
}

.infog .badge-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.infog .badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 16px;
    border: 2px solid #b6744473;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.45;
    color: #B67444;
    background: transparent;
    letter-spacing: .04em;
    position: relative;
    overflow: hidden;
    transition: border-color .22s ease-out, color .22s ease-out
}

.infog .badge:hover {
    border-color: #B67444;
    color: #F1E9DF
}

.infog .badge .badge-count {
    background: #B67444;
    color: #111009;
    border-radius: 20px;
    font-size: 14px;
    padding: 0 8px;
    line-height: 1.45
}

.infog .math-bg {
    position: absolute;
    top: 40px;
    right: -40px;
    font-size: 220px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #b674440f;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.infog .block-b {
    position: relative;
    border-left: 4px solid #B67444;
    background: #16130d;
    padding: 80px 0
}

.infog .block-b-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1
}

.infog .block-b-grid {
    display: grid;
    grid-template-columns: 3fr 4fr 3fr;
    gap: 40px;
    align-items: start
}

.infog .col-left {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.infog .col-mid {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.infog .col-right {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.infog .sec-label {
    font-size: 14px;
    line-height: 1.45;
    color: #DA9DA2;
    letter-spacing: .1em;
    text-transform: uppercase
}

.infog .sec-h2 {
    font-size: 24px;
    line-height: 1.2;
    color: #F1E9DF;
    margin: 0;
    letter-spacing: -.01em
}

.infog .sec-body {
    font-size: 14px;
    line-height: 1.65;
    color: #f1e9dfa6;
    margin: 0
}

.infog .compare-table {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.infog .cmp-head {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    margin-bottom: 8px
}

.infog .cmp-head-cell {
    font-size: 14px;
    line-height: 1.45;
    color: #B67444;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 8px;
    background: #b6744414;
    border-radius: 6px;
    text-align: center
}

.infog .cmp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    align-items: center
}

.infog .cmp-cell {
    font-size: 14px;
    line-height: 1.45;
    color: #f1e9dfbf;
    padding: 8px;
    background: #f1e9df08;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #f1e9df0f;
    transition: background .2s ease-out
}

.infog .cmp-row:hover .cmp-cell {
    background: #b674440f
}

.infog .cmp-cell.feat {
    text-align: left;
    color: #f1e9dfe6
}

.infog .cmp-cell .chk {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #b6744440;
    position: relative;
    vertical-align: middle
}

.infog .cmp-cell .chk::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #B67444
}

.infog .cmp-cell .cross {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #da9da21f;
    position: relative;
    vertical-align: middle
}

.infog .cmp-cell .cross::before,
.infog .cmp-cell .cross::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 2px;
    background: #da9da280;
    border-radius: 2px
}

.infog .cmp-cell .cross::before {
    transform: translate(-50%, -50%) rotate(45deg)
}

.infog .cmp-cell .cross::after {
    transform: translate(-50%, -50%) rotate(-45deg)
}

.infog .metric-stack {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.infog .metric-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: #f1e9df08;
    border-radius: 12px;
    border: 1px solid #b674441f;
    box-shadow: 2px 3px 3px 1px #b6744414;
    position: relative;
    overflow: hidden;
    transition: border-color .28s ease-out, box-shadow .28s ease-out
}

.infog .metric-item:hover {
    border-color: #b6744459;
    box-shadow: 2px 4px 28px 1px #b6744417
}

.infog .metric-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #B67444;
    border-radius: 2px 0 0 2px;
    opacity: 0;
    transition: opacity .2s ease-out
}

.infog .metric-item:hover::before {
    opacity: 1
}

.infog .metric-num {
    font-size: 24px;
    line-height: 1.2;
    color: #B67444;
    letter-spacing: -.02em
}

.infog .metric-desc {
    font-size: 14px;
    line-height: 1.45;
    color: #f1e9df99
}

.infog .slide-label-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 6px
}

.infog .slide-label-wrap .sl-base {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.45;
    color: #f1e9df80;
    border: 1px solid #f1e9df1a;
    border-radius: 6px;
    transition: color .22s ease-out
}

.infog .slide-label-wrap .sl-hover {
    position: absolute;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #B67444, #b67444b3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 14px;
    line-height: 1.45;
    color: #111009;
    white-space: nowrap;
    transition: left .35s ease-out
}

.infog .slide-label-wrap:hover .sl-hover {
    left: 0
}

.infog .slide-label-wrap:hover .sl-base {
    color: transparent
}

.infog .quote-block {
    padding: 16px;
    background: #da9da20f;
    border-radius: 12px;
    border: 1px solid #da9da226;
    border-top: 3px solid #DA9DA2;
    box-shadow: 2px 4px 28px 1px #da9da217
}

.infog .quote-text {
    font-size: 19px;
    line-height: 1.65;
    color: #DA9DA2;
    margin: 0;
    font-style: italic
}

.infog .quote-attr {
    font-size: 14px;
    line-height: 1.45;
    color: #f1e9df73;
    margin: 8px 0 0
}

.infog .edu-note {
    font-size: 14px;
    line-height: 1.65;
    color: #f1e9df66;
    padding: 8px 16px;
    border: 1px dashed #b6744440;
    border-radius: 6px;
    margin-top: 8px
}

@media (max-width: 1024px) {
    .infog .block-a {
        grid-template-columns: 1fr;
        padding: 40px 16px 16px
    }

    .infog .block-a-text {
        padding-left: 8px
    }

    .infog .pg-h1 {
        font-size: 40px
    }

    .infog .math-bg {
        font-size: 120px;
        right: -16px
    }

    .infog .block-b-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .infog .col-right {
        grid-column: 1 / 3
    }

    .infog .block-b {
        padding: 40px 0
    }
}

@media (max-width: 640px) {
    .infog .block-a-img-zone {
        display: none
    }

    .infog .pg-h1 {
        font-size: 24px
    }

    .infog .block-b-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .infog .col-right {
        grid-column: auto
    }

    .infog .block-a {
        padding: 40px 16px 16px
    }

    .infog .block-b-inner {
        padding: 0 16px
    }

    .infog .divider-dash {
        padding: 0 16px
    }
}

.abauth {
    background-color: #141210;
    color: #F1E9DF;
    overflow-x: hidden;
    position: relative
}

.abauth .pg-wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes rowReveal {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.abauth .anim-row {
    animation: rowReveal .38s ease-out both
}

.abauth .anim-row:nth-child(2) {
    animation-delay: .12s
}

.abauth .anim-row:nth-child(3) {
    animation-delay: .22s
}

.abauth .anim-row:nth-child(4) {
    animation-delay: .32s
}

.abauth .tb {
    padding: 80px 0 40px;
    position: relative
}

.abauth .tb-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: center
}

.abauth .tb-left {
    position: relative;
    padding: 40px;
    z-index: 1
}

.abauth .dotgrid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #b674442e 1px, transparent 1px);
    background-size: 18px 18px;
    border-radius: 12px;
    z-index: 0;
    pointer-events: none
}

.abauth .tb-left-content {
    position: relative;
    z-index: 1
}

.abauth .tb-pre {
    font-size: 14px;
    letter-spacing: .12em;
    color: #DA9DA2;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.45
}

.abauth .tb-h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #F1E9DF;
    text-transform: uppercase;
    margin-bottom: 16px
}

.abauth .tb-h1 span {
    color: #B67444
}

.abauth .tb-desc {
    font-size: 19px;
    line-height: 1.65;
    color: #c9bfb4;
    max-width: 520px
}

.abauth .tb-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    box-shadow: 2px 10px 40px 1px #b674441a
}

.abauth .tb-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, transparent 40%, #141210b8 100%);
    pointer-events: none
}

.abauth .tb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
    transition: transform .45s ease-out
}

.abauth .tb-img-wrap:hover img {
    transform: scale(1.06) translateX(6px)
}

.abauth .tb-portrait {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid #b6744459;
    box-shadow: 2px 4px 28px 1px #b6744417
}

.abauth .tb-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .38s ease-out
}

.abauth .tb-portrait:hover img {
    transform: scale(1.04) translateY(-4px)
}

.abauth .tb-card-label {
    text-align: center;
    font-size: 19px;
    line-height: 1.45;
    color: #F1E9DF;
    margin-bottom: 8px
}

.abauth .tb-card-role {
    text-align: center;
    font-size: 14px;
    letter-spacing: .08em;
    color: #B67444;
    text-transform: uppercase
}

.abauth .infstrip {
    padding: 40px 0;
    background: linear-gradient(to right, #b674441f, transparent);
    border-top: 1px solid #b674442e;
    border-bottom: 1px solid #da9da21f
}

.abauth .infstrip-inner {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: stretch
}

.abauth .inf-item {
    flex: 1;
    padding: 16px;
    border-radius: 6px;
    background: #f1e9df0a;
    border: 1px solid #b6744424;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: dropIn .28s ease-out both;
    transition: background .22s ease-out, border-color .22s ease-out
}

.abauth .inf-item:nth-child(1) {
    animation-delay: .05s
}

.abauth .inf-item:nth-child(2) {
    animation-delay: .12s
}

.abauth .inf-item:nth-child(3) {
    animation-delay: .19s
}

.abauth .inf-item:nth-child(4) {
    animation-delay: .26s
}

.abauth .inf-item:hover {
    background: #b674441a;
    border-color: #b6744452
}

.abauth .inf-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center
}

.abauth .inf-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #B67444;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.abauth .inf-num {
    font-size: 24px;
    line-height: 1.2;
    color: #B67444;
    letter-spacing: -.01em
}

.abauth .inf-label {
    font-size: 14px;
    line-height: 1.45;
    color: #c9bfb4;
    letter-spacing: .04em
}

.abauth .profile {
    padding: 80px 0
}

.abauth .profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px
}

.abauth .prof-card {
    background: #f1e9df08;
    border-radius: 12px;
    border: 1px solid #f1e9df14;
    overflow: hidden;
    box-shadow: 2px 3px 3px 1px #b6744414;
    transition: transform .25s ease-out, box-shadow .25s ease-out;
    animation: rowReveal .38s ease-out both
}

.abauth .prof-card:nth-child(1) {
    animation-delay: .08s
}

.abauth .prof-card:nth-child(2) {
    animation-delay: .16s
}

.abauth .prof-card:nth-child(3) {
    animation-delay: .24s
}

.abauth .prof-card:nth-child(4) {
    animation-delay: .32s
}

.abauth .prof-card:hover {
    transform: translateY(-4px);
    box-shadow: 2px 10px 40px 1px #b674441a
}

.abauth .prof-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative
}

.abauth .prof-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s ease-out
}

.abauth .prof-card:hover .prof-img img {
    transform: translateX(-8px) scale(1.04)
}

.abauth .prof-body {
    padding: 16px
}

.abauth .prof-tag {
    font-size: 14px;
    letter-spacing: .1em;
    color: #DA9DA2;
    text-transform: uppercase;
    margin-bottom: 8px
}

.abauth .prof-h4 {
    font-size: 19px;
    line-height: 1.45;
    color: #F1E9DF;
    margin-bottom: 8px
}

.abauth .prof-p {
    font-size: 14px;
    line-height: 1.65;
    color: #a89d94
}

.abauth .profile-quote {
    margin-top: 40px;
    padding: 40px;
    background: #b6744412;
    border-radius: 12px;
    border-left: 4px solid #B67444;
    border-top: 1px solid #b6744433
}

.abauth .profile-quote blockquote {
    font-size: 19px;
    line-height: 1.65;
    color: #B67444;
    font-style: italic;
    margin: 0
}

.abauth .profile-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: #c9bfb4;
    font-style: normal;
    letter-spacing: .06em
}

.abauth .approach {
    padding: 80px 0;
    background: #da9da20a;
    border-top: 1px solid #da9da21a
}

.abauth .approach-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.abauth .appr-h2 {
    font-size: 24px;
    line-height: 1.2;
    color: #F1E9DF;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 16px
}

.abauth .appr-p {
    font-size: 14px;
    line-height: 1.65;
    color: #a89d94;
    margin-bottom: 16px
}

.abauth .appr-p strong {
    color: #DA9DA2;
    font-weight: 600
}

.abauth .method-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px
}

.abauth .method-list li {
    background: #f1e9df0a;
    border-radius: 6px;
    border: 1px solid #b6744424;
    padding: 16px;
    font-size: 14px;
    line-height: 1.65;
    color: #c9bfb4;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    transition: background .18s ease-out
}

.abauth .method-list li:hover {
    background: #b6744414
}

.abauth .mnum {
    font-size: 19px;
    color: #B67444;
    line-height: 1.2;
    min-width: 24px;
    font-weight: 700
}

.abauth .appr-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
    box-shadow: 2px 4px 28px 1px #b6744417;
    margin-bottom: 40px
}

.abauth .appr-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .42s ease-out
}

.abauth .appr-img-wrap:hover img {
    transform: translateY(-6px) scale(1.03)
}

.abauth .disc-note {
    background: #f1e9df08;
    border-radius: 6px;
    border: 1px solid #f1e9df1a;
    padding: 16px
}

.abauth .disc-note p {
    font-size: 14px;
    line-height: 1.65;
    color: #8a8078;
    margin: 0
}

.abauth .disc-note strong {
    color: #DA9DA2
}

@media (max-width: 1024px) {
    .abauth .tb-inner {
        grid-template-columns: 1fr
    }

    .abauth .tb-img-wrap {
        display: none
    }

    .abauth .profile-grid {
        grid-template-columns: 1fr 1fr
    }

    .abauth .approach-wrap {
        grid-template-columns: 1fr
    }

    .abauth .appr-img-wrap {
        display: none
    }

    .abauth .infstrip-inner {
        flex-wrap: wrap
    }

    .abauth .inf-item {
        flex-basis: calc(50% - 4px)
    }
}

@media (max-width: 640px) {
    .abauth .tb-h1 {
        font-size: 24px
    }

    .abauth .profile-grid {
        grid-template-columns: 1fr
    }

    .abauth .inf-item {
        flex-basis: 100%
    }

    .abauth .pg-wrap {
        padding: 0 16px
    }

    .abauth .tb-left {
        padding: 16px
    }

    .abauth .profile-quote {
        padding: 16px
    }
}

.blg {
    background-color: #141210;
    color: #F1E9DF;
    overflow-x: hidden;
    position: relative
}

.blg .titlesec {
    padding: 80px 40px;
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative
}

.blg .titlesec::before {
    content: "";
    position: absolute;
    inset: 0;
    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='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    border-radius: 0
}

.blg .titlesec .eyebrow {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #B67444;
    margin-bottom: 16px;
    line-height: 1.2
}

.blg .titlesec .thumb {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    opacity: .55;
    margin-bottom: 40px;
    box-shadow: 2px 10px 40px 1px #b674441a
}

.blg .titlesec h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #F1E9DF;
    margin: 0 0 16px;
    text-transform: uppercase
}

.blg .titlesec h1 span {
    color: #B67444
}

.blg .titlesec .sub {
    font-size: 19px;
    line-height: 1.65;
    color: #DA9DA2;
    max-width: 560px;
    margin: 0
}

.blg .divmark {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0
}

.blg .divmark svg {
    width: 48px;
    height: 48px;
    opacity: .7
}

.blg .gridarticles {
    max-width: 1366px;
    margin: 0 auto;
    padding: 40px 40px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.blg .artcard {
    background: #1e1a16;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 4px 28px 1px #b6744417;
    border: 1.5px solid #b674441f;
    transition: border-color .25s ease-out, box-shadow .38s ease-out;
    position: relative
}

.blg .artcard:hover {
    border-color: #b6744461;
    box-shadow: 2px 10px 40px 1px #b674441a
}

.blg .artcard .imgbox {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0
}

.blg .artcard .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease-out
}

.blg .artcard:hover .imgbox img {
    transform: scale(1.04)
}

.blg .artcard .cardmeta {
    padding: 16px 16px 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.blg .artcard .tag {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #B67444;
    background: #b674441a;
    border-radius: 6px;
    padding: 4px 8px;
    border: 1px solid #b674442e
}

.blg .artcard .rtime {
    font-size: 14px;
    line-height: 1.2;
    color: #9a8878;
    margin-left: auto
}

.blg .artcard .cardbody {
    padding: 8px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.blg .artcard h2 {
    font-size: 19px;
    line-height: 1.45;
    letter-spacing: -.01em;
    color: #F1E9DF;
    margin: 0
}

.blg .artcard .desc {
    font-size: 14px;
    line-height: 1.65;
    color: #b5a899;
    margin: 0;
    flex: 1
}

.blg .artcard .authrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 16px;
    border-top: 1px solid #b674441a;
    margin-top: 8px
}

.blg .artcard .authname {
    font-size: 14px;
    line-height: 1.2;
    color: #DA9DA2
}

.blg .artcard .readlink {
    margin-left: auto;
    font-size: 14px;
    line-height: 1.2;
    color: #B67444;
    text-decoration: none;
    border-bottom: 1.5px solid #b6744459;
    padding-bottom: 2px;
    transition: color .2s ease-out, border-color .2s ease-out
}

.blg .artcard .readlink:hover {
    color: #DA9DA2;
    border-color: #da9da280
}

.blg .infosec {
    background: #1a1510;
    border-top: 1px solid #b6744424;
    border-bottom: 1px solid #b6744424;
    padding: 80px 40px
}

.blg .infosec .infowrap {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 80px;
    align-items: center
}

.blg .infosec .infoleft .eyebrow {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #B67444;
    margin-bottom: 16px;
    line-height: 1.2
}

.blg .infosec .infoleft h2 {
    font-size: 24px;
    line-height: 1.45;
    color: #F1E9DF;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .01em
}

.blg .infosec .infoleft p {
    font-size: 19px;
    line-height: 1.65;
    color: #b5a899;
    margin: 0 0 16px
}

.blg .infosec .infoleft .quote {
    font-size: 19px;
    line-height: 1.45;
    color: #B67444;
    border-left: 3px solid #B67444;
    border-top: 1px solid #b6744433;
    padding: 16px;
    border-radius: 0 6px 6px 0;
    background: #b674440f;
    margin: 16px 0 0
}

.blg .infosec .inforight {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.blg .ringcard {
    background: #231d17;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    border: 1px solid #da9da21a;
    box-shadow: 2px 3px 3px 1px #da9da214
}

.blg .ringcard svg {
    flex-shrink: 0;
    animation: floatup 3.2s ease-out infinite
}

.blg .ringcard:nth-child(2) svg {
    animation-duration: 2.7s;
    animation-delay: .4s
}

.blg .ringcard:nth-child(3) svg {
    animation-duration: 3.6s;
    animation-delay: .8s
}

@keyframes floatup {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.blg .ringcard .ringinfo {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.blg .ringcard .ringlabel {
    font-size: 14px;
    line-height: 1.2;
    color: #9a8878;
    text-transform: uppercase;
    letter-spacing: .08em
}

.blg .ringcard .ringval {
    font-size: 24px;
    line-height: 1.2;
    color: #F1E9DF;
    letter-spacing: -.01em
}

.blg .ringcard .ringdesc {
    font-size: 14px;
    line-height: 1.45;
    color: #b5a899
}

.blg .joinsec {
    padding: 80px 40px;
    position: relative;
    overflow: hidden
}

.blg .joinsec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #b6744412 0%, transparent 100%);
    pointer-events: none
}

.blg .joinsec .joinwrap {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40fr 60fr;
    gap: 80px;
    align-items: start
}

.blg .joinsec .joinleft {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative
}

.blg .joinsec .joinleft::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, #b674444d, transparent)
}

.blg .joinsec .joinleft .eyebrow {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #B67444;
    line-height: 1.2
}

.blg .joinsec .joinleft h2 {
    font-size: 24px;
    line-height: 1.45;
    color: #F1E9DF;
    margin: 0;
    text-transform: uppercase
}

.blg .joinsec .joinleft p {
    font-size: 19px;
    line-height: 1.65;
    color: #b5a899;
    margin: 0
}

.blg .joinsec .joinleft .disclaim {
    font-size: 14px;
    line-height: 1.65;
    color: #7a6e68;
    border: 1px solid #b674441f;
    border-radius: 6px;
    padding: 8px;
    background: #b674440a
}

.blg .joinsec .joinright {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.blg .joinform {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #1e1a16;
    border-radius: 12px;
    padding: 40px;
    border: 1.5px solid #b6744424;
    box-shadow: 2px 4px 28px 1px #b6744417
}

.blg .joinform label {
    font-size: 14px;
    line-height: 1.2;
    color: #9a8878;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: block;
    margin-bottom: 4px
}

.blg .joinform input,
.blg .joinform textarea {
    width: 100%;
    background: #141210;
    border: 1.5px solid #b674442e;
    border-radius: 6px;
    padding: 8px 16px;
    color: #F1E9DF;
    font-size: 14px;
    line-height: 1.65;
    box-shadow: inset 2px 2px 4px #b674440f;
    transition: border-color .22s ease-out;
    box-sizing: border-box;
    outline: none
}

.blg .joinform input::placeholder,
.blg .joinform textarea::placeholder {
    color: #5a504a
}

.blg .joinform input:focus,
.blg .joinform textarea:focus {
    border-color: #b6744480
}

.blg .joinform textarea {
    height: 100px;
    resize: vertical
}

.blg .joinform .submitbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 40px;
    border: 2.5px solid #B67444;
    border-radius: 6px;
    background: transparent;
    color: #B67444;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease-out, color .2s ease-out;
    align-self: flex-start
}

.blg .joinform .submitbtn:hover {
    background: #B67444;
    color: #141210
}

.blg .joinform .submitbtn:focus {
    outline: 2px solid #DA9DA2;
    outline-offset: 2px
}

@media (max-width: 1024px) {
    .blg .gridarticles {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 40px 16px 80px
    }

    .blg .infosec .infowrap {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .blg .joinsec .joinwrap {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .blg .joinsec .joinleft::after {
        display: none
    }

    .blg .titlesec h1 {
        font-size: 40px
    }
}

@media (max-width: 640px) {
    .blg .gridarticles {
        grid-template-columns: 1fr;
        padding: 16px 16px 40px
    }

    .blg .artcard .imgbox {
        display: none
    }

    .blg .titlesec {
        padding: 40px 16px
    }

    .blg .titlesec h1 {
        font-size: 24px
    }

    .blg .titlesec .thumb {
        display: none
    }

    .blg .infosec {
        padding: 40px 16px
    }

    .blg .joinsec {
        padding: 40px 16px
    }

    .blg .joinform {
        padding: 16px
    }
}

.phln {
    background-color: #18120e;
    color: #F1E9DF;
    overflow: hidden;
    position: relative
}

.phln .reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    animation: slideLeft .38s ease-out .1s forwards
}

.phln .reveal-right {
    opacity: 0;
    transform: translateX(32px);
    animation: slideRight .38s ease-out .22s forwards
}

.phln .reveal-up {
    opacity: 0;
    transform: translateY(24px);
    animation: slideUp .32s ease-out .18s forwards
}

.phln .reveal-up2 {
    opacity: 0;
    transform: translateY(24px);
    animation: slideUp .32s ease-out .34s forwards
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.phln .pg-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    max-width: 1366px;
    margin: 0 auto;
    position: relative
}

.phln .pg-imgzone {
    position: relative;
    overflow: hidden
}

.phln .pg-imgzone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease-out
}

.phln .pg-imgzone::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #b674448c, transparent);
    pointer-events: none
}

.phln .pg-txtzone {
    background: #B67444;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.phln .pg-txtzone::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid #f1e9df1f;
    pointer-events: none
}

.phln .pg-txtzone::after {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid #f1e9df14;
    pointer-events: none
}

.phln .pg-label {
    font-size: 14px;
    letter-spacing: .12em;
    color: #f1e9dfb3;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.2
}

.phln .pg-h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #18120e;
    margin-bottom: 16px
}

.phln .pg-h1 span {
    color: #F1E9DF
}

.phln .pg-desc {
    font-size: 19px;
    line-height: 1.65;
    color: #f1e9dfe0;
    margin-bottom: 40px;
    max-width: 480px
}

.phln .pg-link {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .08em;
    color: #18120e;
    border: 2px solid #18120e;
    padding: 8px 16px;
    border-radius: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s ease-out, color .2s ease-out;
    align-self: flex-start
}

.phln .pg-link:hover {
    background: #18120e;
    color: #F1E9DF
}

.phln .pg-link:focus {
    outline: 2px solid #F1E9DF;
    outline-offset: 4px
}

.phln .act-wrap {
    background: #221a12;
    padding: 80px 0;
    position: relative
}

.phln .act-wrap .bg-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.phln .act-wrap .bg-geo::before {
    content: "";
    position: absolute;
    top: 40px;
    right: 80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid #b6744412
}

.phln .act-wrap .bg-geo::after {
    content: "";
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid #da9da212
}

.phln .act-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px
}

.phln .act-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start
}

.phln .act-h2 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #F1E9DF;
    margin-bottom: 16px
}

.phln .act-h2 span {
    color: #B67444
}

.phln .act-sub {
    font-size: 19px;
    line-height: 1.65;
    color: #f1e9dfb8
}

.phln .act-aside {
    padding-top: 16px
}

.phln .act-quote {
    font-size: 19px;
    line-height: 1.65;
    color: #DA9DA2;
    border-left: 3px solid #B67444;
    border-top: 1px solid #b674444d;
    padding: 16px;
    border-radius: 0 6px 6px 0;
    background: #b674440f;
    box-shadow: 2px 4px 28px 1px #b6744417
}

.phln .act-quote em {
    font-style: normal;
    color: #F1E9DF
}

.phln .act-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 80px
}

.phln .act-card {
    background: #2a1f15;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 2px 3px 3px 1px #b6744414;
    transition: transform .25s ease-out, box-shadow .25s ease-out;
    position: relative
}

.phln .act-cards:hover .act-card {
    transform: translateX(0) scale(0.98);
    opacity: .8
}

.phln .act-cards .act-card:hover {
    transform: scale(1.02);
    opacity: 1;
    box-shadow: 2px 10px 40px 1px #b674441a
}

.phln .act-card-num {
    font-size: 62px;
    line-height: 1.2;
    color: #b674442e;
    letter-spacing: -.03em;
    margin-bottom: 8px;
    display: block
}

.phln .act-card-h {
    font-size: 19px;
    line-height: 1.45;
    color: #F1E9DF;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.phln .act-card-p {
    font-size: 14px;
    line-height: 1.65;
    color: #f1e9dfa6
}

.phln .act-timeline-wrap {
    background: #1a1108;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 2px 4px 28px 1px #b6744417;
    margin-bottom: 80px;
    overflow: hidden
}

.phln .tl-heading {
    font-size: 24px;
    line-height: 1.45;
    color: #F1E9DF;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.phln .tl-axis {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: flex-start
}

.phln .tl-axis::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #B67444, #da9da24d)
}

.phln .tl-point {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
    position: relative
}

.phln .tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #B67444;
    border: 2px solid #1a1108;
    box-shadow: 2px 3px 3px 1px #b6744414;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: background .22s ease-out
}

.phln .tl-point:hover .tl-dot {
    background: #DA9DA2
}

.phln .tl-yr {
    font-size: 14px;
    letter-spacing: .1em;
    color: #B67444;
    margin-bottom: 4px;
    text-transform: uppercase
}

.phln .tl-label {
    font-size: 14px;
    line-height: 1.65;
    color: #f1e9dfbf;
    padding-right: 16px
}

.phln .act-invert {
    background: #F1E9DF;
    border-radius: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.phln .inv-h {
    font-size: 24px;
    line-height: 1.45;
    color: #18120e;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 16px
}

.phln .inv-h span {
    color: #B67444
}

.phln .inv-p {
    font-size: 14px;
    line-height: 1.65;
    color: #18120ebf;
    margin-bottom: 16px
}

.phln .inv-note {
    font-size: 14px;
    line-height: 1.65;
    color: #18120e8c;
    border-top: 1px solid #b6744440;
    padding-top: 16px
}

.phln .inv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.phln .inv-list li {
    background: #18120e;
    border-radius: 6px;
    padding: 16px;
    font-size: 14px;
    line-height: 1.65;
    color: #F1E9DF;
    box-shadow: 2px 3px 3px 1px #b6744414;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.phln .inv-list li strong {
    color: #DA9DA2;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .06em
}

@media (max-width: 1024px) {
    .phln .pg-split {
        grid-template-columns: 1fr
    }

    .phln .pg-imgzone {
        display: none
    }

    .phln .pg-h1 {
        font-size: 40px
    }

    .phln .act-top {
        grid-template-columns: 1fr
    }

    .phln .act-cards {
        grid-template-columns: 1fr 1fr
    }

    .phln .act-h2 {
        font-size: 40px
    }

    .phln .act-invert {
        grid-template-columns: 1fr
    }
}

@media (max-width: 640px) {
    .phln .pg-txtzone {
        padding: 40px 16px
    }

    .phln .pg-h1 {
        font-size: 24px
    }

    .phln .act-inner {
        padding: 0 16px
    }

    .phln .act-cards {
        grid-template-columns: 1fr
    }

    .phln .act-h2 {
        font-size: 24px
    }

    .phln .tl-axis {
        flex-direction: column;
        gap: 16px
    }

    .phln .tl-axis::before {
        display: none
    }

    .phln .act-timeline-wrap {
        padding: 16px
    }

    .phln .act-wrap {
        padding: 40px 0
    }

    .phln .act-invert {
        padding: 16px
    }
}

.succPg {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #111009;
    padding: 80px 16px
}

.succPg .card {
    max-width: 560px;
    width: 100%;
    background: #1a1508;
    border: 2px solid #B67444;
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 2px 10px 40px 1px #b674441a
}

.succPg .card .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 40px;
    display: block
}

.succPg .card .ttl {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #F1E9DF;
    margin: 0 0 16px;
    text-transform: uppercase
}

.succPg .card .msg {
    font-size: 19px;
    line-height: 1.65;
    color: #DA9DA2;
    margin: 0 0 40px
}

.succPg .card .note {
    font-size: 14px;
    line-height: 1.45;
    color: #8a7060;
    margin: 0 0 40px;
    padding: 16px;
    border: 1px solid #2e1f10;
    border-radius: 6px;
    background: #130e06;
    box-shadow: inset 2px 2px 4px #b6744414
}

.succPg .card .backBtn {
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .06em;
    color: #B67444;
    text-decoration: none;
    border: 2px solid #B67444;
    border-radius: 6px;
    padding: 16px 40px;
    transition: color .25s ease-out, background-color .18s ease-out, border-color .25s ease-out;
    text-transform: uppercase
}

.succPg .card .backBtn:hover {
    background-color: #B67444;
    color: #111009
}

.succPg .card .backBtn:focus {
    outline: 2px solid #DA9DA2;
    outline-offset: 4px
}

@media (max-width: 640px) {
    .succPg {
        padding: 40px 16px
    }

    .succPg .card {
        padding: 40px 16px
    }
}