@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
    --black: #080807;
    --off-white: #f0ece3;
    --amber: #ddae00;
    --amber-light: #ddae00;
    --dim: #C8C4BC;
    --border: #1e1d1b;
    --card: #0d0c0b;
    --nav-h: 64px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--off-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.85;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.cur {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--amber);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s;
    mix-blend-mode: screen;
}

.cur-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--amber);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: .4;
}

nav.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: var(--black);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
    height: var(--nav-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    flex-shrink: 0;
    z-index: 2;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    height: 100%;
    align-items: center;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dim);
    padding: 0 22px;
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}

.nav-links a:hover {
    color: var(--off-white);
}

.nav-links a.active {
    color: var(--off-white);
    border-bottom-color: var(--amber);
}

.nav-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    background: var(--amber);
    color: var(--black);
    padding: 10px 22px;
    text-decoration: none;
    transition: background .2s;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--amber-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 2;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--off-white);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    z-index: 400;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.nav-mobile.open {
    max-height: 600px;
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.nav-mobile ul li a {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dim);
    padding: 15px 24px;
    border-left: 3px solid transparent;
    transition: color .2s, border-color .2s, background .2s;
}

.nav-mobile ul li a:hover,
.nav-mobile ul li a.active {
    color: var(--off-white);
    border-left-color: var(--amber);
    background: rgba(200, 168, 75, .05);
}

.nav-mobile-cta {
    display: block;
    margin: 16px 24px 24px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    background: var(--amber);
    color: var(--black);
    padding: 13px 24px;
    text-decoration: none;
    transition: background .2s;
}

.nav-mobile-cta:hover {
    background: var(--amber-light);
}

.btn {
    display: inline-block;
    padding: 13px 36px;
    background: var(--amber);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, transform .2s;
    white-space: nowrap;
}

.btn:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
}

.btn-o {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dim);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 168, 75, .3);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
}

.btn-o:hover {
    color: var(--off-white);
    border-color: var(--dim);
}

.hr {
    width: 100%;
    height: 1px;
    background: var(--border);
}

section {
    padding: 110px 64px;
}

.sec-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.sec-label::after {
    content: '';
    flex: 1;
    max-width: 72px;
    height: 1px;
    background: var(--amber);
    opacity: .4;
}

.tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--amber);
    border: 1px solid rgba(200, 168, 75, .28);
    padding: 5px 12px;
    display: inline-block;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.ph-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 18px;
    opacity: 0;
    animation: up .8s ease .2s forwards;
}

.ph-h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(36px, 5vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.025em;
    opacity: 0;
    animation: up .9s ease .4s forwards;
}

.ph-h1 em {
    font-style: italic;
    color: var(--amber);
}

.ph-sub, .ph-desc {
    font-size: 18.5px;
    color: var(--dim);
    max-width: 520px;
    line-height: 1.9;
    opacity: 0;
    animation: up .9s ease .6s forwards;
}

.page-hero {
    padding: calc(var(--nav-h) + 60px) 64px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.page-hero-about {
    padding-top: var(--nav-h);
    min-height: 58vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero {
    padding-top: var(--nav-h);
    display: grid;
    grid-template-columns: 3fr 1fr;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--amber), transparent);
    z-index: 4;
    opacity: .5;
}

.hero-photo {
    position: relative;
    overflow: hidden;
}

.hero-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(.78);
    transition: transform .6s ease;
}

.hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent 30%, var(--black) 100%),
    linear-gradient(to top, var(--black) 0%, transparent 25%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 24px 80px 64px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: up .8s ease .2s forwards;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--amber);
    flex-shrink: 0;
}

.hero-h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(52px, 7.5vw, 120px);
    font-weight: 900;
    line-height: .96;
    letter-spacing: -.04em;
    opacity: 0;
    animation: up .9s ease .35s forwards;
}

.hero-h1 em {
    font-style: italic;
    color: var(--amber);
}

.hero-sub {
    margin-top: 28px;
    font-size: 20px;
    color: var(--dim);
    max-width: 100%;
    line-height: 1.85;
    opacity: 0;
    animation: up .9s ease .55s forwards;
}

.hero-cta {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: up .9s ease .75s forwards;
}

.hero-scroll {
    margin-top: auto;
    padding-top: 48px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--dim);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: up .9s ease 1s forwards;
}

.hero-scroll::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--amber);
    flex-shrink: 0;
}

.stats-strip {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 0 32px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-val {
    font-family: 'DM Sans', sans-serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    color: var(--off-white);
}

.stat-val em {
    font-style: italic;
    color: var(--amber);
}

.stat-key {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dim);
}

.image-band {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 3px;
    height: 420px;
}

.bn {
    overflow: hidden;
    position: relative;
}

.bn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.72);
    transition: filter .4s, transform .55s ease;
}

.bn:hover img {
    filter: brightness(.9);
    transform: scale(1.04);
}

.bn-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 24px;
    background: linear-gradient(to top, rgba(8, 8, 7, .85) 0%, transparent 100%);
}

.bn-label span {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
}

.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-headline {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.intro-headline em {
    font-style: italic;
    color: var(--amber);
}

.intro-body p {
    color: #f2f1e7;
    margin-bottom: 18px;
    font-size: 19px;
    line-height: 1.92;
}

.intro-body .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.art-list {
    display: flex;
    flex-direction: column;
}

.art {
    display: grid;
    grid-template-columns: 88px 1fr auto 20px;
    align-items: center;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    position: relative;
    transition: padding-left .25s;
}

.art::before {
    content: '';
    position: absolute;
    left: -64px;
    right: -64px;
    top: 0;
    bottom: 0;
    background: rgba(200, 168, 75, .04);
    opacity: 0;
    transition: opacity .2s;
}

.art:hover::before {
    opacity: 1;
}

.art:hover {
    padding-left: 10px;
}

.art-n {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--dim);
    letter-spacing: .1em;
}

.art-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.art-t {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.3;
    transition: color .2s;
}

.art:hover .art-t {
    color: var(--amber);
}

.art-desc {
    font-size: 16px;
    color: var(--dim);
    line-height: 1.7;
}

.art-s {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--dim);
    white-space: nowrap;
}

.art-a {
    font-size: 16px;
    color: var(--amber);
    opacity: 0;
    transition: opacity .2s, transform .2s;
}

.art:hover .art-a {
    opacity: 1;
    transform: translateX(6px);
}

.stmt {
    position: relative;
    background: var(--card);
    padding: 100px 64px;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stmt::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 320px;
    font-weight: 900;
    line-height: 1;
    color: rgba(200, 168, 75, .07);
    pointer-events: none;
    user-select: none;
}

.stmt::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--amber), transparent);
}

.stmt-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stmt-q {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(22px, 3.2vw, 46px);
    font-weight: 800;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.3;
    letter-spacing: -.02em;
}

.stmt-q em {
    font-style: normal;
    color: var(--amber);
}

.stmt-by {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stmt-by::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--amber);
    flex-shrink: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--card);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: background .25s, transform .25s, box-shadow .25s;
    border-radius: 12px;
}

.blog-card:hover {
    background: #111009;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.bc-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.bc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.75) grayscale(15%);
    transition: transform .5s, filter .4s;
}

.blog-card:hover .bc-img img {
    transform: scale(1.05);
    filter: brightness(.9) grayscale(0%);
}

.bc-img-ph {
    width: 100%;
    aspect-ratio: 16/10;
    background: #0f0e0c;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.bc-img-ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1815 0%, #0a0908 100%);
}

.bc-img-ph span {
    font-family: 'DM Sans', sans-serif;
    font-size: 52px;
    font-style: italic;
    color: rgba(200, 168, 75, .09);
    position: relative;
    z-index: 1;
}

.bc-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.bc-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
}

.bc-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.35;
    transition: color .2s;
}

.blog-card:hover .bc-title {
    color: var(--amber);
}

.bc-exc {
    font-size: 16px;
    color: var(--dim);
    line-height: 1.78;
    flex: 1;
}

.bc-read {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-top: 4px;
    display: inline-block;
    transition: letter-spacing .2s;
}

.blog-card:hover .bc-read {
    letter-spacing: .26em;
}

.bc-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dim);
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.status-soon {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dim);
    background: #151413;
    border: 1px solid var(--border);
    padding: 3px 8px;
}

.status-live {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(200, 168, 75, .1);
    border: 1px solid rgba(200, 168, 75, .25);
    padding: 3px 8px;
}

.filter-bar {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 12px 18px;
    background: var(--card);
    color: var(--dim);
    border: none;
    cursor: pointer;
    transition: background .2s, color .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover, .filter-btn.active {
    background: #1a1917;
    color: var(--off-white);
}

.filter-btn.active {
    border-bottom: 2px solid var(--amber);
    color: var(--amber);
}

.newsletter {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nl-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
}

.nl-h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(24px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.2;
}

.nl-h2 em {
    font-style: italic;
    color: var(--amber);
}

.nl-desc {
    color: var(--dim);
    font-size: 18px;
    margin-top: 12px;
    line-height: 1.8;
}

.nl-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nl-input {
    background: #0a0908;
    border: 1px solid var(--border);
    color: var(--off-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    padding: 14px 18px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}

.nl-input:focus {
    border-color: var(--amber);
}

.nl-input::placeholder {
    color: var(--dim);
}

.nl-btn {
    background: var(--amber);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: background .2s;
    width: 100%;
}

.nl-btn:hover {
    background: var(--amber-light);
}

.nl-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--dim);
    margin-top: 4px;
}

.about-hero {
    padding-top: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.about-hero-photo {
    position: relative;
    overflow: hidden;
}

.about-hero-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(.82);
}

.about-hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent 40%, var(--black) 100%),
    linear-gradient(to top, var(--black) 0%, transparent 20%);
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    position: relative;
    z-index: 2;
}

.about-hero-h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(42px, 5.5vw, 82px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -.025em;
    margin-bottom: 24px;
    opacity: 0;
    animation: up .9s ease .4s forwards;
}

.about-hero-h1 em {
    font-style: italic;
    color: var(--amber);
}

.about-hero-sub {
    font-size: 17px;
    color: var(--dim);
    max-width: 420px;
    line-height: 1.85;
    opacity: 0;
    animation: up .9s ease .6s forwards;
}

.about-hero-stats {
    display: flex;
    gap: 0;
    margin-top: 52px;
    border-top: 1px solid var(--border);
    padding-top: 36px;
    opacity: 0;
    animation: up .9s ease .8s forwards;
}

.ahs-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 24px;
    border-right: 1px solid var(--border);
    margin-right: 24px;
}

.ahs-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.ahs-val {
    font-family: 'DM Sans', sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    color: var(--off-white);
}

.ahs-val em {
    font-style: italic;
    color: var(--amber);
}

.ahs-key {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dim);
}

.bio-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
}

.bio-img-stack {
    position: relative;
    padding-bottom: 48px;
}

.bio-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.bio-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .6s;
}

.bio-img-main:hover img {
    transform: scale(1.03);
}

.bio-img-float {
    position: absolute;
    bottom: 0;
    right: -24px;
    width: 56%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 4px solid var(--black);
    outline: 1px solid var(--border);
}

.bio-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bio-body h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(26px, 3vw, 46px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 32px;
}

.bio-body h2 em {
    font-style: italic;
    color: var(--amber);
}

.bio-body p {
    color: #C8C4BC;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.9;
}

.bio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.skill-item {
    background: var(--card);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background .3s;
}

.skill-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width .4s;
}

.skill-item:hover::after {
    width: 100%;
}

.skill-item:hover {
    background: #111009;
}

.sk-n {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    color: rgba(200, 168, 75, .08);
    line-height: 1;
    margin-bottom: 18px;
}

.sk-t {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sk-d {
    font-size: 17px;
    color: var(--dim);
    line-height: 1.8;
}

.timeline {
    display: flex;
    flex-direction: column;
}

.tl-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.tl-item::before {
    content: '';
    position: absolute;
    left: 155px;
    top: 42px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 1px var(--black), 0 0 0 3px rgba(200, 168, 75, .3);
}

.tl-year {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--amber);
    padding-top: 4px;
}

.tl-org {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
}

.tl-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 10px;
}

.tl-desc {
    font-size: 17px;
    color: #C8C4BC;
    line-height: 1.78;
}

.orgs-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.org-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dim);
}

.org {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-style: italic;
    color: var(--dim);
    transition: color .2s;
}

.org:hover {
    color: var(--off-white);
}

.featured-art {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    min-height: 460px;
    margin-bottom: 3px;
    text-decoration: none;
}

.fa-img {
    overflow: hidden;
    position: relative;
}

.fa-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.7);
    transition: filter .4s, transform .55s;
}

.featured-art:hover .fa-img img {
    filter: brightness(.9);
    transform: scale(1.03);
}

.fa-body {
    background: var(--card);
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fa-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(200, 168, 75, .1);
    border: 1px solid rgba(200, 168, 75, .2);
    padding: 5px 12px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 24px;
}

.fa-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(22px, 2.5vw, 38px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--off-white);
    transition: color .2s;
}

.featured-art:hover .fa-title {
    color: var(--amber);
}

.fa-exc {
    font-size: 16px;
    color: var(--dim);
    line-height: 1.82;
    margin-top: 16px;
    flex: 1;
}

.fa-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.fa-source {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--amber);
}

.fa-arrow {
    font-size: 20px;
    color: var(--amber);
    transition: transform .2s;
}

.featured-art:hover .fa-arrow {
    transform: translateX(8px);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.media-card {
    background: var(--card);
    padding: 36px 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: background .25s;
}

.media-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width .4s;
}

.media-card:hover::after {
    width: 100%;
}

.media-card:hover {
    background: #111009;
}

.media-type {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
}

.media-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.35;
    transition: color .2s;
}

.media-card:hover .media-title {
    color: var(--amber);
}

.media-pub {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--dim);
}

.ph-links {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    animation: up .9s ease .8s forwards;
}

.ph-link {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
}

.ph-link-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dim);
    width: 80px;
    flex-shrink: 0;
    padding-top: 2px;
}

.ph-link-val {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--amber);
    transition: color .2s;
    word-break: break-all;
}

.ph-link:hover .ph-link-val {
    color: var(--amber-light);
}

.contact-section {
    padding: 0 64px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.contact-form {
    background: var(--card);
    padding: 52px 48px;
}

.form-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 36px;
    line-height: 1.3;
}

.form-title em {
    font-style: italic;
    color: var(--amber);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dim);
    display: block;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: #0a0908;
    border: 1px solid var(--border);
    color: var(--off-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15.5px;
    padding: 13px 16px;
    outline: none;
    transition: border-color .2s;
    resize: none;
    appearance: none;
}

.form-input:focus {
    border-color: var(--amber);
}

.form-input::placeholder {
    color: var(--dim);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    background: var(--amber);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 15px 32px;
    border: none;
    cursor: pointer;
    transition: background .2s;
    margin-top: 8px;
    width: 100%;
}

.form-submit:hover {
    background: var(--amber-light);
}

.contact-info {
    background: var(--card);
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ci-section h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.ci-section p {
    font-size: 17px;
    color: var(--dim);
    line-height: 1.78;
    margin-bottom: 10px;
}

.ci-section a {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: .12em;
    color: var(--off-white);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .2s;
    word-break: break-all;
}

.ci-section a:hover {
    color: var(--amber);
}

.booking {
    background: var(--amber);
    padding: 72px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bk-h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(24px, 3vw, 46px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
}

.bk-h2 em {
    font-style: italic;
}

.bk-desc {
    color: rgba(8, 8, 7, .6);
    font-size: 16px;
    margin-top: 12px;
}

.bk-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--black);
    color: var(--amber);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
}

.bk-btn:hover {
    background: #1a1917;
}

.socials-row {
    padding: 64px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.soc-item {
    background: var(--card);
    padding: 32px 28px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background .2s;
    position: relative;
    overflow: hidden;
}

.soc-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width .4s;
}

.soc-item:hover::after {
    width: 100%;
}

.soc-item:hover {
    background: #111009;
}

.soc-platform {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--amber);
}

.soc-handle {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-style: italic;
    color: var(--off-white);
    transition: color .2s;
}

.soc-item:hover .soc-handle {
    color: var(--amber);
}

.soc-arrow {
    font-size: 16px;
    color: var(--dim);
    margin-top: auto;
    transition: transform .2s, color .2s;
}

.soc-item:hover .soc-arrow {
    transform: translateX(6px);
    color: var(--amber);
}

footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.ft-brand .ft-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 12px;
}

.ft-brand p {
    font-size: 15px;
    color: var(--dim);
    line-height: 1.75;
    max-width: 260px;
}

.ft-nav h4, .ft-contact h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

.ft-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-nav ul li {
    margin: 0;
    padding: 0;
}

.ft-nav ul a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dim);
    text-decoration: none;
    transition: color .2s;
    display: inline-block;
}

.ft-nav ul a:hover {
    color: var(--off-white);
}

.ft-contact p {
    font-size: 15px;
    color: var(--dim);
    margin-bottom: 12px;
    line-height: 1.7;
}

.ft-contact a {
    color: var(--amber);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    letter-spacing: .08em;
    word-break: break-all;
    transition: color .2s;
}

.ft-contact a:hover {
    color: var(--amber-light);
}

.ft-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card);
}

.ft-copy {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .16em;
    color: #AAAAAA;
}

.ft-socials {
    display: flex;
    gap: 24px;
}

.ft-socials a {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dim);
    text-decoration: none;
    transition: color .2s;
}

.ft-socials a:hover {
    color: var(--amber);
}

@media (max-width: 1024px) {
    .nav-inner {
        padding: 0 32px;
    }

    section {
        padding: 80px 40px;
    }

    .hero-content {
        padding: 0 20px 64px 40px;
    }

    .hero-h1 {
        font-size: clamp(48px, 7vw, 96px);
    }

    .stats-strip {
        padding: 28px 40px;
    }

    .image-band {
        grid-template-columns: 2fr 1fr;
    }

    .image-band .bn:last-child {
        display: none;
    }

    .intro-split {
        gap: 48px;
    }

    .art {
        grid-template-columns: 72px 1fr auto 20px;
        gap: 20px;
    }

    .stmt {
        padding: 80px 40px;
    }

    .stmt::before {
        font-size: 240px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .newsletter {
        padding: 48px 40px;
        gap: 40px;
    }

    .bio-grid {
        gap: 48px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-art {
        grid-template-columns: 1fr;
    }

    .fa-img {
        height: 340px;
    }

    .media-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-section {
        padding: 0 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form, .contact-info {
        padding: 40px 32px;
    }

    .booking {
        padding: 56px 40px;
        gap: 40px;
    }

    .socials-row {
        padding: 40px;
    }

    footer {
        padding: 48px 40px;
    }

    .ft-bottom {
        padding: 20px 40px;
    }

    .about-hero {
        grid-template-columns: 1fr;
        padding-top: var(--nav-h);
        min-height: auto;
    }

    .about-hero-photo {
        height: 50vw;
        min-height: 280px;
    }

    .about-hero-content {
        padding: 56px 40px;
    }

    .about-hero-stats {
        margin-top: 36px;
        padding-top: 28px;
    }

    .page-hero {
        padding: calc(var(--nav-h) + 40px) 40px 64px;
        gap: 48px;
    }
}

@media (max-width: 768px) {

    body {
        cursor: auto;
    }

    .cur, .cur-ring {
        display: none;
    }

    .nav-inner {
        padding: 0 20px;
        height: 56px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-mobile {
        display: block;
    }

    :root {
        --nav-h: 56px;
    }

    section {
        padding: 56px 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 56px;
        min-height: auto;
    }

    .hero::before {
        display: none;
    }

    .hero-photo {
        height: 55vw;
        min-height: 220px;
        max-height: 320px;
        order: -1;
    }

    .hero-content {
        padding: 36px 20px 48px;
    }

    .hero-h1 {
        font-size: clamp(34px, 9vw, 52px);
    }

    .hero-sub {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .hero-scroll {
        display: none;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
        gap: 20px;
    }

    .stat-item {
        border-right: none;
        padding: 0;
    }

    .stat-val {
        font-size: 28px;
    }

    .image-band {
        grid-template-columns: 1fr;
        height: auto;
    }

    .bn {
        height: 60vw;
        min-height: 220px;
    }

    .bn:not(:first-child) {
        display: none;
    }

    .intro-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .intro-headline {
        font-size: clamp(26px, 7vw, 38px);
    }

    .art {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        padding: 18px 0;
    }

    .art-s, .art-a {
        display: none;
    }

    .art-n {
        font-size: 10px;
    }

    .art-t {
        font-size: 15px;
    }

    .art::before {
        left: -20px;
        right: -20px;
    }

    .stmt {
        padding: 64px 20px;
    }

    .stmt::before {
        font-size: 160px;
        top: -20px;
        left: 16px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-hero {
        grid-template-columns: 1fr;
        padding: 90px 20px 48px;
        gap: 20px;
    }

    .ph-h1 {
        font-size: clamp(32px, 9vw, 52px);
    }

    .ph-sub, .ph-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .about-hero {
        grid-template-columns: 1fr;
        padding-top: 56px;
        min-height: auto;
    }

    .about-hero-photo {
        height: 55vw;
        min-height: 220px;
        max-height: 320px;
    }

    .about-hero-content {
        padding: 36px 20px 48px;
    }

    .about-hero-h1 {
        font-size: clamp(34px, 9vw, 52px);
    }

    .about-hero-sub {
        font-size: 15px;
    }

    .about-hero-stats {
        margin-top: 32px;
        padding-top: 24px;
        gap: 0;
    }

    .ahs-val {
        font-size: 26px;
    }

    .ahs-item {
        padding-right: 16px;
        margin-right: 16px;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bio-img-float {
        display: none;
    }

    .bio-img-main {
        aspect-ratio: 4/3;
    }

    .bio-body h2 {
        font-size: clamp(22px, 7vw, 34px);
        margin-bottom: 20px;
    }

    .bio-body p {
        font-size: 15px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .tl-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .tl-item::before {
        display: none;
    }

    .orgs-row {
        gap: 14px;
    }

    .featured-art {
        grid-template-columns: 1fr;
    }

    .fa-img {
        height: 52vw;
        min-height: 200px;
    }

    .fa-body {
        padding: 28px 20px;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .newsletter {
        grid-template-columns: 1fr;
        padding: 32px 20px;
        gap: 28px;
    }

    .ph-links {
        margin-top: 20px;
    }

    .ph-link-label {
        width: 70px;
        font-size: 10px;
    }

    .contact-section {
        padding: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-info {
        padding: 24px 16px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-input {
        font-size: 15px;
        padding: 12px 14px;
        width: 100%;
        max-width: 100%;
    }

    .form-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .form-submit {
        padding: 14px 20px;
        font-size: 11px;
    }

    .booking {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 24px;
    }

    .bk-btn {
        width: 100%;
        text-align: center;
    }

    .socials-row {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    div[style*="padding:0 64px"] {
        padding: 0 !important;
    }

    footer {
        grid-template-columns: 1fr;
        padding: 36px 20px;
        gap: 28px;
    }

    .ft-bottom {
        padding: 16px 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .ft-socials {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }
}

@media (max-width: 400px) {
    body {
        font-size: 17px;
    }

    .hero-h1 {
        font-size: 30px;
    }

    .stats-strip {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat-item {
        padding: 0 0 14px;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .btn {
        padding: 12px 20px;
        font-size: 11px;
    }

    section {
        padding: 44px 16px;
    }

    .stmt {
        padding: 52px 16px;
    }

    .nav-inner {
        padding: 0 16px;
    }
}

nav.nav {
    transition: box-shadow .3s ease, background .3s ease;
}

nav.nav.nav-scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, .5);
    background: rgba(8, 8, 7, .98);
}

#readProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--amber);
    z-index: 9999;
    transition: width .1s linear;
}

.stagger-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.stagger-child.stagger-visible {
    opacity: 1;
    transform: none;
}

.hero-photo, .about-hero-photo {
    overflow: hidden;
}

.hero-photo img, .about-hero-photo img {
    will-change: transform;
}

.reveal-slow {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-slow.visible {
    opacity: 1;
    transform: none;
}

.reveal-fade {
    opacity: 0;
    transition: opacity .9s ease;
}

.reveal-fade.visible {
    opacity: 1;
}

.reveal-scale {
    opacity: 0;
    transform: scale(.96);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: none;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: none;
}

.art-pg-wrap {
    padding-top: var(--nav-h);
}

.art-pg-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 64px 48px;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dim);
    text-decoration: none;
    margin-bottom: 32px;
    transition: color .2s;
}

.article-back:hover {
    color: var(--amber);
}

.article-back::before {
    content: '←';
    font-size: 14px;
}

.article-cat {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

.article-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(32px, 4.5vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: var(--off-white);
    margin-bottom: 28px;
    max-width: 860px;
}

.article-title em {
    font-style: italic;
    color: var(--amber);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.article-meta-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta-item::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--amber);
}

.article-meta-item:first-child::before {
    display: none;
}

.art-pg-hero-img {
    max-width: 1400px;
    margin: 0 auto 0;
    padding: 0 64px;
    overflow: hidden;
    position: relative;
}

.art-pg-hero-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(.82);
    display: block;
    border-radius: 16px;
}

.art-pg-hero-caption {
    padding: 12px 64px 0;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--dim);
}

.art-pg-columns {
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 64px 80px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

.art-pg-main {
    min-width: 0;
}

.article-body {
    font-size: 17.5px;
    line-height: 1.92;
    color: #E2DED8;
}

.article-body p {
    margin-bottom: 26px;
}

.article-body h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--off-white);
    margin: 52px 0 18px;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.article-body h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    color: var(--off-white);
    margin: 36px 0 14px;
}

.article-body blockquote {
    border-left: 3px solid var(--amber);
    margin: 36px 0;
    padding: 18px 28px;
    background: var(--card);
    font-size: 17px;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.7;
}

.article-body blockquote cite {
    display: block;
    margin-top: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    font-style: normal;
}

.article-body strong {
    color: var(--off-white);
    font-weight: 700;
}

.article-body a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s;
}

.article-body a:hover {
    color: var(--amber-light);
}

.article-body ul, .article-body ol {
    margin: 0 0 26px 0;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-body ul li::marker {
    color: var(--amber);
}

.article-body ol li::marker {
    color: var(--amber);
    font-weight: 700;
}

.pull-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.35;
    border-top: 2px solid var(--amber);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    margin: 44px 0;
    letter-spacing: -.01em;
}

.author-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 28px 32px;
    margin-top: 52px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--amber);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.author-info-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 4px;
}

.author-info-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
}

.author-info-bio {
    font-size: 15px;
    color: var(--dim);
    line-height: 1.7;
}

.article-footer {
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.article-tag-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dim);
    margin-right: 4px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.article-share-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dim);
}

.article-share a {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--off-white);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 7px 16px;
    transition: border-color .2s, color .2s;
}

.article-share a:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.art-pg-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-block {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 28px 24px;
}

.sidebar-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--amber);
    opacity: .25;
}

.sidebar-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--amber);
    margin-bottom: 4px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.sidebar-author-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--off-white);
}

.sidebar-author-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--amber);
}

.sidebar-author-bio {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.7;
}

.sidebar-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    transition: color .2s;
}

.sidebar-link:hover {
    color: var(--amber-light);
}

.sidebar-recent {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-art {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background .2s;
    position: relative;
}

.sidebar-art:first-child {
    padding-top: 0;
}

.sidebar-art:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-art.active-art {
    opacity: .5;
    pointer-events: none;
}

.sidebar-art-img {
    width: 60px;
    height: 60px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-art-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.7) grayscale(20%);
    transition: filter .3s;
}

.sidebar-art:hover .sidebar-art-img img {
    filter: brightness(.9) grayscale(0%);
}

.sidebar-art-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
}

.sidebar-art-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
}

.sidebar-art-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--off-white);
    line-height: 1.4;
    transition: color .2s;
}

.sidebar-art:hover .sidebar-art-title {
    color: var(--amber);
}

.sidebar-art-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--dim);
}

.sidebar-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-topics .tag {
    font-size: 9px;
    padding: 4px 10px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.sidebar-topics .tag:hover {
    background: rgba(200, 168, 75, .15);
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-nl-desc {
    font-size: 12.5px;
    color: var(--dim);
    line-height: 1.65;
}

.sidebar-nl-input {
    width: 100%;
    background: #0a0908;
    border: 1px solid var(--border);
    color: var(--off-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    padding: 11px 14px;
    outline: none;
    transition: border-color .2s;
}

.sidebar-nl-input:focus {
    border-color: var(--amber);
}

.sidebar-nl-input::placeholder {
    color: var(--dim);
}

.sidebar-nl-btn {
    width: 100%;
    background: var(--amber);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transition: background .2s;
}

.sidebar-nl-btn:hover {
    background: var(--amber-light);
}

.sidebar-nl-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--dim);
}

.related-section {
    padding: 80px 64px;
    background: var(--card);
    border-top: 1px solid var(--border);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .art-pg-columns {
        grid-template-columns: 1fr 280px;
        gap: 40px;
        padding: 48px 40px 64px;
    }

    .art-pg-header {
        padding: 52px 40px 36px;
    }

    .art-pg-hero-img {
        padding: 0 40px;
    }

    .art-pg-hero-img img {
        height: 360px;
    }

    .art-pg-hero-caption {
        padding: 10px 40px 0;
    }
}

@media (max-width: 768px) {
    .art-pg-header {
        padding: 36px 20px 28px;
    }

    .article-title {
        font-size: clamp(26px, 8vw, 40px);
    }

    .art-pg-hero-img {
        padding: 0 20px;
    }

    .art-pg-hero-img img {
        height: 52vw;
        min-height: 180px;
        border-radius: 10px;
    }

    .art-pg-hero-caption {
        padding: 10px 20px 0;
    }

    .art-pg-columns {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 40px 20px 56px;
    }

    .art-pg-sidebar {
        position: static;
        margin-top: 48px;
        gap: 2px;
    }

    .article-body {
        font-size: 16px;
    }

    .article-body blockquote {
        padding: 14px 18px;
    }

    .pull-quote {
        font-size: 17px;
    }

    .author-card {
        flex-direction: column;
        padding: 22px 18px;
    }

    .article-share {
        flex-wrap: wrap;
    }

    .related-section {
        padding: 52px 20px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.faq-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 64px 80px;
}

.faq-section {
    padding: 72px 0 0;
    border-top: 1px solid var(--border);
    margin-top: 0;
}

.faq-section:first-child {
    border-top: none;
    padding-top: 64px;
}

.faq-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--card);
    transition: border-color .25s;
}

.faq-item:hover {
    border-color: rgba(200, 168, 75, .35);
}

.faq-item.open {
    border-color: var(--amber);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--off-white);
    line-height: 1.45;
    transition: color .2s;
}

.faq-q:hover {
    color: var(--amber);
}

.faq-item.open .faq-q {
    color: var(--amber);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: background .25s, border-color .25s;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--dim);
    transition: transform .3s ease, background .25s;
    border-radius: 2px;
}

.faq-icon::before {
    width: 10px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .3s ease, opacity .3s ease, background .25s;
}

.faq-item.open .faq-icon {
    background: var(--amber);
    border-color: var(--amber);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
    background: var(--black);
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 28px;
}

.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 28px 24px;
}

.faq-a p {
    font-size: 17px;
    color: var(--dim);
    line-height: 1.85;
    margin-bottom: 14px;
}

.faq-a p:last-child {
    margin-bottom: 0;
}

.faq-a ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-a ul li {
    font-size: 15px;
    color: var(--dim);
    line-height: 1.75;
    padding-left: 20px;
    position: relative;
}

.faq-a ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

.faq-a ul li strong {
    color: var(--off-white);
    font-weight: 600;
}

.faq-a a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s;
}

.faq-a a:hover {
    color: var(--amber-light);
}

.faq-cta-band {
    background: var(--amber);
    padding: 72px 64px;
}

.faq-cta-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.faq-cta-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(8, 8, 7, .5);
    margin-bottom: 10px;
}

.faq-cta-h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 900;
    color: var(--black);
    line-height: 1.15;
}

.faq-cta-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.faq-cta-actions .btn {
    background: var(--black);
    color: var(--amber);
}

.faq-cta-actions .btn:hover {
    background: #1a1917;
}

.faq-cta-actions .btn-o {
    color: rgba(8, 8, 7, .65);
    border-bottom-color: rgba(8, 8, 7, .3);
}

.faq-cta-actions .btn-o:hover {
    color: var(--black);
    border-bottom-color: var(--black);
}

@media (max-width: 768px) {
    .faq-page {
        padding: 0 20px 64px;
    }

    .faq-section {
        padding-top: 52px;
    }

    .faq-section:first-child {
        padding-top: 48px;
    }

    .faq-q {
        font-size: 15px;
        padding: 18px 20px;
    }

    .faq-a {
        padding: 0 20px;
    }

    .faq-item.open .faq-a {
        padding: 0 20px 20px;
    }

    .faq-a p {
        font-size: 14.5px;
    }

    .faq-cta-band {
        padding: 52px 20px;
    }

    .faq-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .faq-cta-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .faq-cta-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.home-faq-section {
}

.home-faq-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 64px 90px;
}

.home-faq-header {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.home-faq-h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: var(--off-white);
}

.home-faq-h2 em {
    font-style: italic;
    color: var(--amber);
}

.home-faq-sub {
    font-size: 18px;
    color: var(--dim);
    line-height: 1.8;
    padding-top: 8px;
    max-width: 360px;
}

.home-faq-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.home-faq-left,
.home-faq-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-faq-cta {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
    .home-faq-inner {
        padding: 80px 40px 72px;
    }

    .home-faq-header {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .home-faq-header .sec-label {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .home-faq-inner {
        padding: 64px 20px 56px;
    }

    .home-faq-header {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 36px;
        padding-bottom: 32px;
    }

    .home-faq-cols {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .home-faq-sub {
        max-width: 100%;
    }
}

.portfolio-section {
    padding: 110px 64px 80px;
}

.portfolio-intro {
    font-size: 19px;
    color: var(--dim);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 52px;
    margin-top: -32px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.portfolio-item--large {
    grid-row: span 2;
}

.portfolio-item {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.portfolio-item--large .portfolio-img {
    min-height: 100%;
    height: 100%;
}

.portfolio-item--large .portfolio-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.92);
    transition: transform .6s ease, filter .4s;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.92);
    transition: transform .6s ease, filter .4s;
    display: block;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.05);
    filter: brightness(.75);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(8, 8, 7, .82) 0%, rgba(8, 8, 7, .1) 45%, transparent 100%);
    transition: background .3s;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(8, 8, 7, .92) 0%, rgba(8, 8, 7, .3) 55%, transparent 100%);
}

.portfolio-type {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
    display: block;
}

.portfolio-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.35;
    margin-bottom: 10px;
    transition: color .2s;
}

.portfolio-item--large .portfolio-title {
    font-size: 22px;
    line-height: 1.25;
}

.portfolio-item:hover .portfolio-title {
    color: var(--amber);
}

.portfolio-pub {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(240, 236, 227, .45);
}

.portfolio-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    color: var(--amber);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity .25s, transform .25s;
}

.portfolio-item:hover .portfolio-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.portfolio-footer {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
    .portfolio-section {
        padding: 80px 40px 64px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .portfolio-item--large {
        grid-row: span 1;
    }

    .portfolio-item--large .portfolio-img {
        min-height: 280px;
    }

    .portfolio-item--large .portfolio-title {
        font-size: 18px;
    }

    .portfolio-img {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 64px 20px 52px;
    }

    .portfolio-intro {
        font-size: 15px;
        margin-bottom: 36px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .portfolio-item--large {
        grid-row: span 1;
    }

    .portfolio-img, .portfolio-item--large .portfolio-img {
        min-height: 56vw;
    }

    .portfolio-title {
        font-size: 15px;
    }

    .portfolio-item--large .portfolio-title {
        font-size: 17px;
    }

    .portfolio-arrow {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.pf-page-hero {
    padding-top: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 72vh;
    border-bottom: 1px solid var(--border);
}

.pf-page-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    position: relative;
    z-index: 2;
}

.pf-page-h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(40px, 5.5vw, 82px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.03em;
    margin: 18px 0 24px;
    opacity: 0;
    animation: up .9s ease .4s forwards;
}

.pf-page-h1 em {
    font-style: italic;
    color: var(--amber);
}

.pf-page-hero-content .ph-sub {
    max-width: 440px;
}

.pf-hero-stats {
    display: flex;
    gap: 0;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: up .9s ease .7s forwards;
}

.pf-hs-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 28px;
    border-right: 1px solid var(--border);
    margin-right: 28px;
}

.pf-hs-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.pf-hs-val {
    font-family: 'DM Sans', sans-serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    color: var(--off-white);
}

.pf-hs-val em {
    font-style: italic;
    color: var(--amber);
}

.pf-hs-key {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dim);
}

.pf-page-hero-img {
    position: relative;
    overflow: hidden;
    background: var(--card);
}

.pf-page-hero-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.7) grayscale(10%);
    transition: transform .6s ease;
}

.pf-page-hero:hover .pf-page-hero-img img {
    transform: scale(1.02);
}

.pf-page-hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 35%),
    linear-gradient(to top, var(--black) 0%, transparent 20%);
}

.pf-hero-img-caption {
    position: absolute;
    bottom: 24px;
    left: 28px;
    z-index: 1;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(240, 236, 227, .45);
}

.pf-filter-wrap {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--nav-h);
    z-index: 100;
    padding: 0 64px;
}

.pf-filter-inner {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pf-filter-inner::-webkit-scrollbar {
    display: none;
}

.pf-section {
    padding: 80px 64px 60px;
}

.pfl-hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-bottom: 3px;
}

.pfl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-bottom: 3px;
}

.pfl-card {
    background: var(--card);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    transition: border-color .25s, transform .25s, box-shadow .25s;
}

.pfl-card:hover {
    border-color: rgba(200, 168, 75, .35);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .45);
}

.pfl-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.pfl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(.72) grayscale(12%);
    transition: transform .55s ease, filter .4s;
    display: block;
}

.pfl-card:hover .pfl-card-img img {
    transform: scale(1.05);
    filter: brightness(.58) grayscale(0%);
}

.pfl-card-lg .pfl-card-img {
    height: 380px;
}

.pfl-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 5px 12px;
    background: var(--amber);
    color: var(--black);
}

.pfl-card-body {
    padding: 28px 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pfl-card-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--dim);
    margin-bottom: 10px;
}

.pfl-card-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
    display: block;
}

.pfl-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--off-white);
    flex: 1;
    transition: color .2s;
}

.pfl-card-lg .pfl-card-title {
    font-size: 22px;
}

.pfl-card:hover .pfl-card-title {
    color: var(--amber);
}

.pfl-card-excerpt {
    font-size: 14px;
    line-height: 1.75;
    color: var(--dim);
    margin-top: 10px;
}

.pfl-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.pfl-card-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dim);
}

.pfl-card-arrow {
    font-size: 18px;
    color: var(--amber);
    transition: transform .2s;
}

.pfl-card:hover .pfl-card-arrow {
    transform: translateX(5px);
}

.pfl-list {
    margin-top: 3px;
    border-top: 1px solid var(--border);
}

.pfl-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: padding-left .2s, background .15s;
}

.pfl-list-row:hover {
    padding-left: 12px;
    background: rgba(200, 168, 75, .03);
}

.pfl-list-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.pfl-list-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-style: italic;
    color: var(--dim);
    flex-shrink: 0;
    width: 28px;
}

.pfl-list-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
    display: block;
    margin-bottom: 5px;
}

.pfl-list-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.3;
    transition: color .2s;
}

.pfl-list-row:hover .pfl-list-title {
    color: var(--amber);
}

.pfl-list-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.pfl-list-year {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--dim);
}

.pfl-list-type {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 1px solid var(--border);
    color: var(--dim);
}

.pfl-list-arrow {
    font-size: 18px;
    color: var(--amber);
    transition: transform .2s;
}

.pfl-list-row:hover .pfl-list-arrow {
    transform: translateX(5px);
}

.pfl-speaking-sec {
    padding: 80px 64px;
    background: var(--card);
    border-top: 1px solid var(--border);
}

.pfl-speak-table {
    margin-top: 48px;
}

.pfl-speak-head {
    display: grid;
    grid-template-columns: 100px 1fr 160px 140px;
    gap: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--off-white);
}

.pfl-speak-head span {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--dim);
}

.pfl-speak-row {
    display: grid;
    grid-template-columns: 100px 1fr 160px 140px;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: padding-left .2s;
}

.pfl-speak-row:hover {
    padding-left: 10px;
}

.pfl-speak-year {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    color: var(--amber);
    line-height: 1;
}

.pfl-speak-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.3;
    transition: color .2s;
    margin-bottom: 4px;
}

.pfl-speak-row:hover .pfl-speak-title {
    color: var(--amber);
}

.pfl-speak-org {
    font-size: 12px;
    color: var(--dim);
}

.pfl-speak-type {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 1px solid var(--border);
    color: var(--dim);
    display: inline-block;
    align-self: center;
}

.pfl-speak-loc {
    font-size: 12px;
    color: var(--dim);
}

.pfl-cta-band {
    background: var(--amber);
    padding: 72px 64px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.pfl-cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.pfl-cta-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(8, 8, 7, .5);
    margin-bottom: 8px;
}

.pfl-cta-h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(24px, 3vw, 46px);
    font-weight: 900;
    color: var(--black);
    line-height: 1.15;
}

.pfl-cta-h2 em {
    font-style: italic;
}

.pfl-cta-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.pfl-cta-actions .btn {
    background: var(--black);
    color: var(--amber);
}

.pfl-cta-actions .btn:hover {
    background: #1a1917;
}

.pfl-cta-actions .btn-o {
    color: rgba(8, 8, 7, .6);
    border-bottom-color: rgba(8, 8, 7, .3);
}

.pfl-cta-actions .btn-o:hover {
    color: var(--black);
    border-bottom-color: var(--black);
}

@media (max-width: 1024px) {
    .pf-page-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .pf-page-hero-content {
        padding: 80px 40px 60px;
    }

    .pf-page-hero-img {
        display: none;
    }

    .pf-filter-wrap {
        padding: 0 40px;
    }

    .pf-section {
        padding: 64px 40px 48px;
    }

    .pfl-hero-row {
        grid-template-columns: 1fr;
    }

    .pfl-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pfl-speaking-sec {
        padding: 64px 40px;
    }

    .pfl-speak-head,
    .pfl-speak-row {
        grid-template-columns: 80px 1fr 140px;
    }

    .pfl-speak-loc {
        display: none;
    }

    .pfl-cta-band {
        padding: 56px 40px;
    }
}

@media (max-width: 768px) {
    .pf-filter-wrap {
        padding: 0 20px;
    }

    .pf-section {
        padding: 48px 20px 36px;
    }

    .pfl-grid {
        grid-template-columns: 1fr;
    }

    .pfl-card-lg .pfl-card-img {
        height: 260px;
    }

    .pfl-speaking-sec {
        padding: 48px 20px;
    }

    .pfl-speak-head {
        display: none;
    }

    .pfl-speak-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 20px 0;
    }

    .pfl-speak-year {
        font-size: 16px;
    }

    .pfl-speak-type {
        display: none;
    }

    .pfl-list-right {
        gap: 12px;
    }

    .pfl-list-type {
        display: none;
    }

    .pfl-list-num {
        display: none;
    }

    .pfl-cta-band {
        padding: 48px 20px;
    }

    .pfl-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .pfl-cta-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .pfl-cta-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.pfd-hero {
    padding-top: var(--nav-h);
    min-height: 72vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--black);
}

.pfd-hero-img {
    position: absolute;
    inset: 0;
}

.pfd-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(.62) grayscale(10%);
}

.pfd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 7, .95) 38%, rgba(8, 8, 7, .3) 80%, transparent);
}

.pfd-hero-body {
    position: relative;
    z-index: 1;
    padding: 0 64px 72px;
    max-width: 1000px;
}

.pfd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(240, 236, 227, .35);
    margin-bottom: 28px;
}

.pfd-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.pfd-breadcrumb a:hover {
    color: var(--amber);
}

.pfd-breadcrumb span {
    color: rgba(240, 236, 227, .18);
}

.pfd-breadcrumb span:last-child {
    color: rgba(240, 236, 227, .55);
}

.pfd-cat {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 18px;
}

.pfd-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(28px, 4.5vw, 62px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.025em;
    color: var(--off-white);
    margin-bottom: 32px;
    max-width: 860px;
}

.pfd-title em {
    font-style: italic;
    color: var(--amber);
}

.pfd-meta-row {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(240, 236, 227, .1);
}

.pfd-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pfd-meta-key {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(240, 236, 227, .3);
}

.pfd-meta-val {
    font-size: 13px;
    letter-spacing: .04em;
    color: rgba(240, 236, 227, .7);
}

.pfd-columns {
    max-width: 1400px;
    margin: 0 auto;
    padding: 72px 64px 80px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

.pfd-main {
    min-width: 0;
}

.pfd-summary {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(17px, 1.8vw, 21px);
    font-style: italic;
    font-weight: 600;
    line-height: 1.65;
    color: var(--off-white);
    border-left: 3px solid var(--amber);
    padding-left: 28px;
    margin-bottom: 40px;
}

.pfd-body {
    font-size: 19px;
    line-height: 1.9;
    color: #E2DED8;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.pfd-body > *:first-child {
    margin-top: 0;
}

.pfd-body p {
    margin-bottom: 26px;
}

.pfd-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 400;
    color: var(--off-white);
    margin: 56px 0 18px;
    line-height: 1.2;
}

.pfd-body h2:first-child {
    margin-top: 0;
}

.pfd-body h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 700;
    color: var(--amber);
    margin: 40px 0 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 13px;
}

.pfd-body blockquote {
    border-left: 3px solid var(--amber);
    margin: 40px 0;
    padding: 20px 28px;
    background: var(--card);
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.65;
    border-radius: 0 6px 6px 0;
}

.pfd-body strong {
    color: var(--off-white);
    font-weight: 700;
}

.pfd-body em {
    color: var(--amber);
    font-style: italic;
}

.pfd-body a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s;
}

.pfd-body a:hover {
    color: var(--amber-light);
}

.pfd-body ul, .pfd-body ol {
    margin: 0 0 26px;
    padding-left: 22px;
}

.pfd-body li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #E2DED8;
}

.pfd-body ul li::marker {
    color: var(--amber);
}

.pfd-body ol li::marker {
    color: var(--amber);
    font-weight: 700;
}

.pfd-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 48px 0;
}

.pfd-ext-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 14px 32px;
    background: var(--amber);
    color: var(--black);
    text-decoration: none;
    margin-top: 12px;
    margin-bottom: 40px;
    transition: background .2s;
}

.pfd-ext-link:hover {
    background: var(--amber-light);
}

.pfd-ext-link span {
    font-size: 16px;
}

.pfd-tags-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.pfd-tags-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dim);
    padding-top: 6px;
    flex-shrink: 0;
}

.pfd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pfd-share {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.pfd-share-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dim);
}

.pfd-share a {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--off-white);
    border: 1px solid var(--border);
    padding: 7px 16px;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.pfd-share a:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.pfd-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pfd-sb-block {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 28px 24px;
}

.pfd-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pfd-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--amber);
    margin-bottom: 4px;
}

.pfd-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.pfd-author-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--off-white);
}

.pfd-author-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--amber);
}

.pfd-author-bio {
    font-size: 12.5px;
    color: var(--dim);
    line-height: 1.7;
    margin-top: 4px;
}

.pfd-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pfd-details-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.pfd-details-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pfd-dl-key {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dim);
    flex-shrink: 0;
    padding-top: 2px;
}

.pfd-dl-val {
    color: var(--off-white);
    text-align: right;
}

.pfd-outcomes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pfd-outcomes li {
    font-size: 13px;
    color: var(--dim);
    line-height: 1.65;
    padding-left: 16px;
    position: relative;
}

.pfd-outcomes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amber);
}

.pfd-sb-cta-desc {
    font-size: 13px;
    color: var(--dim);
    line-height: 1.65;
    margin-bottom: 16px;
}

.pfd-related {
    padding: 80px 64px;
    background: var(--card);
    border-top: 1px solid var(--border);
}

.pfd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 48px;
}

.pfd-rel-card {
    background: var(--black);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color .25s, transform .25s;
}

.pfd-rel-card:hover {
    border-color: rgba(200, 168, 75, .35);
    transform: translateY(-3px);
}

.pfd-rel-img {
    height: 180px;
    overflow: hidden;
}

.pfd-rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(.7) grayscale(10%);
    transition: transform .5s, filter .4s;
}

.pfd-rel-card:hover .pfd-rel-img img {
    transform: scale(1.05);
    filter: brightness(.55);
}

.pfd-rel-body {
    padding: 22px 22px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pfd-rel-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
    display: block;
    margin-bottom: 8px;
}

.pfd-rel-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.35;
    flex: 1;
    transition: color .2s;
}

.pfd-rel-card:hover .pfd-rel-title {
    color: var(--amber);
}

.pfd-rel-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.pfd-rel-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--dim);
}

.pfd-rel-arrow {
    font-size: 16px;
    color: var(--amber);
    transition: transform .2s;
}

.pfd-rel-card:hover .pfd-rel-arrow {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .pfd-columns {
        grid-template-columns: 1fr 280px;
        gap: 40px;
        padding: 52px 40px 64px;
    }

    .pfd-hero-body {
        padding: 0 40px 56px;
    }

    .pfd-related {
        padding: 64px 40px;
    }

    .pfd-related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pfd-hero-body {
        padding: 0 20px 44px;
    }

    .pfd-title {
        font-size: clamp(26px, 8vw, 40px);
    }

    .pfd-meta-row {
        gap: 16px;
    }

    .pfd-breadcrumb {
        flex-wrap: wrap;
    }

    .pfd-columns {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 40px 20px 56px;
    }

    .pfd-sidebar {
        position: static;
        margin-top: 40px;
    }

    .pfd-related {
        padding: 48px 20px;
    }

    .pfd-related-grid {
        grid-template-columns: 1fr;
    }

    .pfd-body {
        font-size: 16px;
    }

    .pfd-summary {
        font-size: 16px;
        padding-left: 18px;
    }
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.lab-intro {
    margin-bottom: 36px;
}

.lab-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 14px;
}

.lab-heading em {
    color: var(--amber);
    font-style: italic;
}

.lab-sub {
    color: var(--dim);
    font-size: 18px;
    line-height: 1.82;
    max-width: 480px;
}

.lab-card {
    background: var(--black);
    border: 1px solid var(--border);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.lab-card-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--amber);
    opacity: .65;
}

.lab-card-bar--dim {
    opacity: .3;
}

.lab-card-bar--muted {
    background: var(--dim);
    opacity: .3;
}

.lab-card-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 18px;
}

.lab-card-label--muted {
    color: var(--dim);
}

.lab-card-desc {
    color: var(--dim);
    font-size: 17px;
    line-height: 1.78;
}

.lab-card-soon {
    color: var(--dim);
    opacity: .45;
    font-size: 14px;
    margin-top: 14px;
    font-style: italic;
}

@media (max-width: 768px) {
    .lab-grid {
        grid-template-columns: 1fr;
    }
}

.pagination-wrap {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.pagination-ishimwe {
    gap: 4px;
}

.pagination-ishimwe .page-link {
    background-color: var(--card);
    border-color: var(--border);
    color: var(--dim);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 10px 18px;
    transition: background-color .2s, border-color .2s, color .2s;
    border-radius: 0 !important;
}

.pagination-ishimwe .page-link:hover {
    background-color: rgba(200, 168, 75, .1);
    border-color: var(--amber);
    color: var(--amber);
}

.pagination-ishimwe .page-link:focus {
    box-shadow: 0 0 0 3px rgba(200, 168, 75, .25);
    background-color: rgba(200, 168, 75, .1);
    border-color: var(--amber);
    color: var(--amber);
}

.pagination-ishimwe .page-item.active .page-link {
    background-color: var(--amber);
    border-color: var(--amber);
    color: var(--black);
    font-weight: 700;
}

.pagination-ishimwe .page-item.disabled .page-link {
    background-color: var(--card);
    border-color: var(--border);
    color: var(--dim);
    opacity: .35;
}

.blog-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--dim);
    font-size: 18px;
    line-height: 1.7;
}

.filter-bar a.filter-btn {
    text-decoration: none;
}

.pfi-section-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.pfi-section-label span {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: var(--amber);
}

.pfi-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.pfi-hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.pfi-hero-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.pfi-hero-card:hover {
    border-color: var(--amber);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

.pfi-hero-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.pfi-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.88);
    transition: transform .6s ease, filter .4s;
    display: block;
}

.pfi-hero-card:hover .pfi-hero-img img {
    transform: scale(1.04);
    filter: brightness(.7);
}

.pfi-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 7, .6) 0%, transparent 60%);
}

.pfi-featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    background: var(--amber);
    color: var(--black);
    padding: 5px 12px;
}

.pfi-hero-body {
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pfi-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pfi-cat-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
}

.pfi-year-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .16em;
    color: var(--dim);
}

.pfi-year-tag::before {
    content: '·';
    margin-right: 10px;
    color: var(--border);
}

.pfi-hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    line-height: 1.3;
    color: var(--off-white);
    transition: color .2s;
}

.pfi-hero-card:hover .pfi-hero-title {
    color: var(--amber);
}

.pfi-hero-excerpt {
    font-size: 15px;
    color: var(--dim);
    line-height: 1.75;
    flex: 1;
}

.pfi-hero-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.pfi-org {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--dim);
}

.pfi-arrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    transition: letter-spacing .2s;
}

.pfi-hero-card:hover .pfi-arrow {
    letter-spacing: .26em;
}

.pfi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.pfi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.pfi-card:hover {
    border-color: var(--amber);
    transform: translateY(-4px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .45);
}

.pfi-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pfi-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(.88);
    transition: transform .55s, filter .4s;
    display: block;
}

.pfi-card:hover .pfi-card-img img {
    transform: scale(1.05);
    filter: brightness(.7);
}

.pfi-card-num {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    font-style: italic;
    color: rgba(200, 168, 75, .35);
    line-height: 1;
}

.pfi-card-body {
    padding: 22px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pfi-card-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
}

.pfi-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--off-white);
    transition: color .2s;
    flex: 1;
}

.pfi-card:hover .pfi-card-title {
    color: var(--amber);
}

.pfi-card-excerpt {
    font-size: 13px;
    color: var(--dim);
    line-height: 1.7;
}

.pfi-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.pfi-card-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--dim);
}

.pfi-card-arrow {
    font-size: 16px;
    color: var(--amber);
    transition: transform .2s;
}

.pfi-card:hover .pfi-card-arrow {
    transform: translateX(4px);
}

.pfi-list {
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.pfi-list-row {
    display: grid;
    grid-template-columns: 40px 80px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: background .15s, padding-left .2s;
}

.pfi-list-row:hover {
    padding-left: 12px;
    background: rgba(200, 168, 75, .03);
}

.pfi-list-num {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--dim);
    opacity: .5;
    flex-shrink: 0;
}

.pfi-list-img {
    width: 72px;
    height: 54px;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
}

.pfi-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: brightness(.82);
    transition: filter .3s;
    display: block;
}

.pfi-list-row:hover .pfi-list-img img {
    filter: brightness(1);
}

.pfi-list-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.pfi-list-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
}

.pfi-list-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--off-white);
    line-height: 1.3;
    transition: color .2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pfi-list-row:hover .pfi-list-title {
    color: var(--amber);
}

.pfi-list-excerpt {
    font-size: 13px;
    color: var(--dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pfi-list-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    text-align: right;
}

.pfi-list-year {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: .1em;
    color: var(--dim);
}

.pfi-list-type {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--dim);
    border: 1px solid var(--border);
    padding: 4px 10px;
}

.pfi-list-arrow {
    font-size: 16px;
    color: var(--amber);
    transition: transform .2s;
}

.pfi-list-row:hover .pfi-list-arrow {
    transform: translateX(4px);
}

.pfd-sb-author .pfd-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.pfd-sb-author .pfd-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--amber);
    flex-shrink: 0;
}

.pfd-sb-author .pfd-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.pfd-sb-author .pfd-author-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--off-white);
}

.pfd-sb-author .pfd-author-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-top: 3px;
}

@media (max-width: 1024px) {
    .pfi-hero-row {
        grid-template-columns: 1fr;
    }

    .pfi-hero-img {
        height: 260px;
    }

    .pfi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pfi-list-row {
        grid-template-columns: 40px 1fr auto;
    }

    .pfi-list-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .pfi-hero-row {
        gap: 14px;
    }

    .pfi-hero-img {
        height: 52vw;
        min-height: 200px;
    }

    .pfi-hero-body {
        padding: 20px;
    }

    .pfi-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pfi-card-img {
        height: 52vw;
    }

    .pfi-list-row {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .pfi-list-num {
        display: none;
    }

    .pfi-list-img {
        display: none;
    }

    .pfi-list-type {
        display: none;
    }

    .pfi-list-excerpt {
        display: none;
    }

    .pfi-list-right {
        flex-direction: column;
        gap: 4px;
        align-items: flex-end;
    }
}

.jnl-hero {
    padding: calc(var(--nav-h) + 64px) 64px 64px;
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 60px;
    align-items: end;
    border-bottom: 1px solid var(--border);
}

.jnl-hero-h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(40px, 5.5vw, 80px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--off-white);
    margin: 14px 0 20px;
    opacity: 0;
    animation: up .9s ease .3s forwards;
}

.jnl-hero-h1 em {
    font-style: italic;
    color: var(--amber);
}

.jnl-hero-sub {
    font-size: 18px;
    color: var(--dim);
    max-width: 520px;
    line-height: 1.8;
    opacity: 0;
    animation: up .9s ease .5s forwards;
}

.jnl-hero-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 4px;
    opacity: 0;
    animation: up .9s ease .6s forwards;
}

.jnl-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 2px solid var(--amber);
    padding-left: 18px;
}

.jnl-stat-val {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    color: var(--off-white);
    line-height: 1;
}

.jnl-stat-key {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dim);
}

.jnl-filter-wrap {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--nav-h);
    z-index: 100;
    padding: 0 64px;
}

.jnl-filter-inner {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.jnl-filter-inner::-webkit-scrollbar {
    display: none;
}

.jnl-section {
    padding: 56px 64px 80px;
}

.jnl-featured {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    text-decoration: none;
    color: inherit;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.jnl-featured:hover {
    border-color: var(--amber);
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
}

.jnl-feat-img {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.jnl-feat-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.88);
    transition: transform .6s ease, filter .4s;
    display: block;
}

.jnl-featured:hover .jnl-feat-img img {
    transform: scale(1.04);
    filter: brightness(.72);
}

.jnl-feat-body {
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.jnl-feat-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.jnl-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
}

.jnl-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--dim);
}

.jnl-read {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--dim);
}

.jnl-date::before, .jnl-read::before {
    content: '·';
    margin-right: 12px;
    color: var(--border);
}

.jnl-feat-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 400;
    line-height: 1.25;
    color: var(--off-white);
    transition: color .2s;
}

.jnl-featured:hover .jnl-feat-title {
    color: var(--amber);
}

.jnl-feat-exc {
    font-size: 16px;
    color: var(--dim);
    line-height: 1.8;
    flex: 1;
}

.jnl-feat-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-top: 4px;
    transition: letter-spacing .2s;
}

.jnl-featured:hover .jnl-feat-cta {
    letter-spacing: .30em;
}

.jnl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jnl-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.jnl-card:hover {
    border-color: var(--amber);
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

.jnl-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.jnl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.9);
    transition: transform .6s ease, filter .4s;
    display: block;
}

.jnl-card:hover .jnl-card-img img {
    transform: scale(1.05);
    filter: brightness(.7);
}

.jnl-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 7, .5) 0%, transparent 55%);
    transition: opacity .3s;
}

.jnl-card:hover .jnl-card-img-overlay {
    opacity: .7;
}

.jnl-card-body {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.jnl-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jnl-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.32;
    color: var(--off-white);
    transition: color .2s;
    flex: 1;
}

.jnl-card:hover .jnl-card-title {
    color: var(--amber);
}

.jnl-card-exc {
    font-size: 14.5px;
    color: var(--dim);
    line-height: 1.75;
}

.jnl-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.jnl-card-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--amber);
    transition: letter-spacing .2s;
}

.jnl-card:hover .jnl-card-cta {
    letter-spacing: .28em;
}

.jnl-arrow {
    font-size: 16px;
    color: var(--amber);
    transition: transform .2s;
}

.jnl-card:hover .jnl-arrow {
    transform: translateX(4px);
}

.art-excerpt-block {
    border-left: 3px solid var(--amber);
    padding: 20px 28px;
    background: var(--card);
    border-radius: 0 8px 8px 0;
    margin-bottom: 44px;
}

.art-excerpt-text {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(18px, 1.8vw, 22px);
    font-style: italic;
    line-height: 1.65;
    color: var(--off-white);
}

.art-author-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: start;
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--amber);
    padding: 28px 30px;
    margin-top: 52px;
    border-radius: 0 0 8px 8px;
}

.art-author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--amber);
}

.art-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.art-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.art-author-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--off-white);
}

.art-author-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 8px;
}

.art-author-bio {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.7;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .jnl-hero {
        padding: calc(var(--nav-h) + 40px) 40px 48px;
        gap: 40px;
    }

    .jnl-filter-wrap {
        padding: 0 40px;
    }

    .jnl-section {
        padding: 48px 40px 64px;
    }

    .jnl-featured {
        grid-template-columns: 1fr;
    }

    .jnl-feat-img {
        min-height: 300px;
    }

    .jnl-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .jnl-hero {
        grid-template-columns: 1fr;
        padding: calc(var(--nav-h) + 32px) 20px 36px;
        gap: 24px;
    }

    .jnl-hero-aside {
        flex-direction: row;
        gap: 28px;
    }

    .jnl-filter-wrap {
        padding: 0 20px;
    }

    .jnl-section {
        padding: 32px 20px 56px;
    }

    .jnl-feat-img {
        min-height: 52vw;
    }

    .jnl-feat-body {
        padding: 24px 20px;
    }

    .jnl-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .art-author-card {
        grid-template-columns: 1fr;
    }

    .art-author-avatar {
        width: 56px;
        height: 56px;
    }

    .art-excerpt-block {
        padding: 16px 18px;
    }
}





.legal-updated {
    font-size: .8rem;
    letter-spacing: .04em;
    color: var(--dim);
    margin-top: 18px;
    text-transform: uppercase;
}

.legal-section {
    padding-top: 20px;
    padding-bottom: 110px
}

.legal-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 22px;
    align-items: start;
}

.legal-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 34px;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease;
}

.legal-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--amber);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s ease;
}

.legal-card:hover {
    transform: translateY(-4px);
    border-color: #2a2926
}

.legal-card:hover::before {
    transform: scaleY(1)
}

.legal-num {
    display: inline-block;
    font-family: 'DM Serif Display', serif;
    font-size: .95rem;
    color: var(--amber);
    margin-bottom: 12px;
    letter-spacing: .05em;
}

.legal-h2 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--off-white);
    margin: 0 0 16px;
}

.legal-card p {
    color: var(--dim);
    font-size: 1rem;
    line-height: 1.72;
    margin: 0 0 14px;
}

.legal-card p:last-child {
    margin-bottom: 0
}

.legal-card strong {
    color: var(--off-white);
    font-weight: 600
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px
}

.legal-list li {
    position: relative;
    padding-left: 24px;
    color: var(--dim);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.legal-list li:last-child {
    margin-bottom: 0
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    background: var(--amber);
    border-radius: 50%;
}

.legal-card--contact {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--card), #000);
    padding: 46px 44px;
}

.legal-card--contact::before {
    display: none
}

.legal-card--contact:hover {
    transform: none
}

.legal-contact-h {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 1.15;
    color: var(--off-white);
    margin: 0 0 12px;
}

.legal-contact-h em {
    color: var(--amber);
    font-style: italic
}

.legal-card--contact > div {
    flex: 1;
    min-width: 260px
}

.legal-contact-btn {
    display: inline-block;
    white-space: nowrap;
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: var(--black);
    background: var(--amber);
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .25s ease, opacity .25s ease;
}

.legal-contact-btn:hover {
    transform: translateY(-2px);
    opacity: .92
}

@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns:1fr;
        gap: 18px
    }

    .legal-card {
        padding: 28px 24px
    }

    .legal-h2 {
        font-size: 1.35rem
    }

    .legal-card--contact {
        padding: 34px 26px
    }

    .legal-contact-h {
        font-size: 1.5rem
    }

    .legal-contact-btn {
        width: 100%;
        text-align: center
    }
}

