/* ═══════════════════════════════════════════════════════════════════════
   RPJ GROUP — SHARED STYLESHEET (heritage merchant-house system)
   Used by every page. Page-specific rules live in small <style> blocks
   on each page, but everything structural is here.
   ─────────────────────────────────────────────────────────────────────── */

/* ─── TOKENS ─────────────────────────────────────────────────────────── */
:root {
    --parchment: #F4F1EA;
    --parchment-deep: #ECE7DB;
    --ink: #1A1A18;
    --ink-2: #232320;
    --oxblood: #5A1F22;
    --oxblood-2: #6E2A2D;
    --rose: #C9968B;
    --stone: #6E6A60;
    --stone-2: #908B7F;
    --hairline: #D8D2C4;
    --hairline-d: #3A3A35;
    --cream: #FBFAF6;
    --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --nav-h: 84px;
    --max: 1180px;
    --max-narrow: 820px;
    --gutter: clamp(1.5rem, 5vw, 3rem);
    --ease: cubic-bezier(0.33, 0, 0.1, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--serif);
    background: var(--parchment);
    color: var(--ink);
    line-height: 1.65;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

/* ─── PRIMITIVES ─────────────────────────────────────────────────────── */
.wrap {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.wrap--narrow {
    max-width: var(--max-narrow);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: var(--parchment);
    padding: 10px 18px;
    z-index: 1000;
    font-family: var(--sans);
    font-size: 0.8rem;
}

    .skip-link:focus {
        left: 8px;
        top: 8px;
    }

.caption {
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--stone-2);
}

.caption--ox {
    color: var(--oxblood);
}

.caption--light {
    color: rgba(255,255,255,0.4);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

    .reveal.in {
        opacity: 1;
        transform: none;
    }

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

/* Text link with drawn underline */
.link {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 3px;
    border-bottom: 1px solid var(--ink);
    transition: color .2s, border-color .2s;
}

    .link:hover {
        color: var(--oxblood);
        border-color: var(--oxblood);
    }

.link--light {
    color: var(--parchment);
    border-color: rgba(244,241,234,0.5);
}

    .link--light:hover {
        color: #fff;
        border-color: #fff;
    }

.link__arrow {
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1;
    transition: transform .2s;
}

.link:hover .link__arrow {
    transform: translateX(4px);
}

/* Solid button (oxblood) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--oxblood);
    color: var(--parchment);
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 16px 30px;
    transition: background .2s, transform .2s;
}

    .btn:hover {
        background: var(--oxblood-2);
        transform: translateY(-2px);
    }

.btn__arrow {
    font-family: var(--serif);
    font-size: 1.15rem;
    line-height: 1;
    transition: transform .2s;
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}

    .btn--ghost:hover {
        background: var(--ink);
        color: var(--parchment);
    }

.btn--ghost-light {
    background: transparent;
    color: var(--parchment);
    border: 1px solid rgba(244,241,234,0.4);
}

    .btn--ghost-light:hover {
        background: var(--parchment);
        color: var(--ink);
        border-color: var(--parchment);
    }

/* ─── HEADER ─────────────────────────────────────────────────────────── */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    height: var(--nav-h);
    background: rgba(244,241,234,0);
    transition: background .5s var(--ease), border-color .5s var(--ease);
    border-bottom: 1px solid transparent;
}

    .header.solid {
        background: var(--parchment);
        border-bottom-color: var(--hairline);
    }
    /* On dark hero, links light; once solid, ink */
    .header .nav-link, .header .crest-text, .header .nav-toggle__bar {
        color: var(--parchment);
    }

    .header .crest-rule {
        stroke: rgba(244,241,234,0.7);
    }

    .header .crest-mono {
        fill: var(--parchment);
    }

    .header.solid .nav-link, .header.solid .crest-text {
        color: var(--ink);
    }

    .header.solid .crest-rule {
        stroke: var(--oxblood);
    }

    .header.solid .crest-mono {
        fill: var(--oxblood);
    }

    .header.solid .nav-toggle__bar {
        background: var(--ink);
    }
    /* Pages with a LIGHT hero (no dark banner) opt into solid-from-start */
    .header.always-solid {
        background: var(--parchment);
        border-bottom-color: var(--hairline);
    }

        .header.always-solid .nav-link, .header.always-solid .crest-text {
            color: var(--ink);
        }

        .header.always-solid .crest-rule {
            stroke: var(--oxblood);
        }

        .header.always-solid .crest-mono {
            fill: var(--oxblood);
        }

        .header.always-solid .nav-toggle__bar {
            background: var(--ink);
        }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.crest {
    display: flex;
    align-items: center;
    gap: 14px;
}

.crest__mark {
    width: 42px;
    height: 50px;
    flex-shrink: 0;
}

.crest__words {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.crest-text {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: color .5s;
}

.crest__est {
    font-family: var(--sans);
    font-size: 0.54rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone-2);
    margin-top: 2px;
}

.header:not(.solid):not(.always-solid) .crest__est {
    color: rgba(244,241,234,0.4);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-block: .5rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
    white-space: nowrap;
    opacity: .85;
}

    .nav-link:hover, .nav-link[aria-current="page"] {
        opacity: 1;
        color: var(--oxblood);
    }

.header:not(.solid):not(.always-solid) .nav-link:hover {
    color: #fff;
}

.nav-link--sub::after {
    content: '+';
    font-family: var(--serif);
    font-size: .9rem;
    opacity: .5;
}

.dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 250px;
    background: var(--cream);
    border: 1px solid var(--hairline);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s, transform .22s, visibility .22s;
    box-shadow: 0 30px 60px rgba(26,26,24,0.12);
}

.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 9px 22px;
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--ink);
    transition: color .15s, background .15s;
}

    .dropdown a:hover {
        color: var(--oxblood);
        background: var(--parchment-deep);
    }

.dropdown__rule {
    height: 1px;
    background: var(--hairline);
    margin: 6px 0;
}

.nav-cta {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--parchment);
    border: 1px solid rgba(244,241,234,0.4);
    padding: 9px 20px;
    transition: all .2s;
}

.header:not(.solid):not(.always-solid) .nav-cta:hover {
    background: rgba(244,241,234,0.1);
    border-color: #fff;
    color: #fff;
}

.header.solid .nav-cta, .header.always-solid .nav-cta {
    color: var(--oxblood);
    border-color: var(--oxblood);
}

    .header.solid .nav-cta:hover, .header.always-solid .nav-cta:hover {
        background: var(--oxblood);
        color: var(--parchment);
    }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 1px;
    transition: transform .25s, opacity .25s;
    background: var(--parchment);
}

.nav-toggle.open .nav-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(4px,5px);
}

.nav-toggle.open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .nav-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px,-5px);
}

.mnav {
    display: none;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(330px, 90vw);
    background: var(--ink);
    z-index: 800;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    padding: 100px var(--gutter) 40px;
    overflow-y: auto;
}

    .mnav.open {
        transform: translateX(0);
    }

.mnav__link {
    display: block;
    padding: 13px 0;
    font-family: var(--serif);
    font-size: 1.15rem;
    color: rgba(244,241,234,0.75);
    border-bottom: 1px solid var(--hairline-d);
    transition: color .15s;
}

    .mnav__link:hover {
        color: #fff;
    }

.mnav__sub .mnav__link {
    font-size: 0.95rem;
    color: rgba(244,241,234,0.4);
    padding-left: 16px;
}

.mnav__cta {
    margin-top: 28px;
    display: block;
    text-align: center;
    border: 1px solid rgba(244,241,234,0.3);
    color: var(--parchment);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 14px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,24,0.55);
    z-index: 799;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
}

    .overlay.in {
        opacity: 1;
        visibility: visible;
    }

/* ─── SECTION SCAFFOLD ───────────────────────────────────────────────── */
.section {
    padding-block: clamp(4.5rem, 10vw, 8rem);
}

.section--deep {
    background: var(--parchment-deep);
}

.section--ink {
    background: var(--ink);
    color: var(--parchment);
}

.section--tight {
    padding-block: clamp(3rem, 6vw, 5rem);
}

.shead {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: baseline;
    margin-bottom: 3.5rem;
}

.shead__num {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--stone-2);
    padding-top: 6px;
}

.shead--ink .shead__num {
    color: rgba(244,241,234,0.4);
}

.shead__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    line-height: 1.15;
    letter-spacing: 0.005em;
    margin-top: .5rem;
}

.shead__intro {
    font-size: 1.05rem;
    color: var(--stone);
    line-height: 1.8;
    max-width: 56ch;
    margin-top: 1.25rem;
}

.shead--ink .shead__intro {
    color: rgba(244,241,234,0.55);
}

/* ─── PAGE HERO (inner pages) ────────────────────────────────────────── */
.phero {
    position: relative;
    background: var(--ink);
    color: var(--parchment);
    padding-top: calc(var(--nav-h) + clamp(3rem,7vw,5.5rem));
    padding-bottom: clamp(3rem,7vw,5.5rem);
    overflow: hidden;
}

.phero__plate {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(120% 100% at 78% 25%, rgba(90,31,34,0.20) 0%, transparent 55%), linear-gradient(180deg, #1A1A18 0%, #14140F 100%);
}

.phero__inner {
    position: relative;
    z-index: 2;
}

.phero__crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.75rem;
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244,241,234,0.4);
}

    .phero__crumbs a {
        transition: color .15s;
    }

        .phero__crumbs a:hover {
            color: var(--parchment);
        }

    .phero__crumbs span {
        opacity: .5;
    }

.phero__kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.phero__kicker-rule {
    width: 44px;
    height: 1px;
    background: var(--rose);
    flex-shrink: 0;
}

.phero__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.08;
    color: var(--parchment);
    max-width: 18ch;
}

    .phero__title em {
        font-style: italic;
        color: var(--rose);
    }

.phero__lead {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.85;
    color: rgba(244,241,234,0.6);
    max-width: 54ch;
    margin-top: 1.75rem;
}

/* ─── FIGURES PLATE (reusable) ───────────────────────────────────────── */
.figures__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.figure {
    padding: clamp(1.5rem,3vw,2.5rem) clamp(1rem,2vw,2rem);
    border-left: 1px solid var(--hairline-d);
}

    .figure:first-child {
        border-left: none;
        padding-left: 0;
    }

.figure__num {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 4.75rem);
    line-height: 0.95;
    color: var(--parchment);
}

    .figure__num span {
        color: var(--rose);
        font-size: 0.45em;
        vertical-align: super;
    }

.figure__rule {
    width: 28px;
    height: 1px;
    background: var(--oxblood);
    margin: 1.25rem 0;
}

.figure__lbl {
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244,241,234,0.5);
    line-height: 1.6;
}

.figures--light .figure {
    border-color: var(--hairline);
}

.figures--light .figure__num {
    color: var(--ink);
}

    .figures--light .figure__num span {
        color: var(--oxblood);
    }

.figures--light .figure__lbl {
    color: var(--stone-2);
}

/* ─── PROSE (article body) ───────────────────────────────────────────── */
.prose {
    max-width: 64ch;
}

    .prose p {
        font-size: 1.1rem;
        color: var(--ink);
        line-height: 1.9;
        margin-bottom: 1.5rem;
    }

        .prose p.lede {
            font-size: clamp(1.4rem, 2.2vw, 1.85rem);
            line-height: 1.5;
            color: var(--ink);
            margin-bottom: 2rem;
        }

            .prose p.lede em {
                font-style: italic;
                color: var(--oxblood);
            }

    .prose h3 {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 1.5rem;
        margin: 2.5rem 0 1rem;
        color: var(--ink);
    }

    .prose blockquote {
        border-left: 2px solid var(--oxblood);
        padding-left: 1.75rem;
        margin: 2.5rem 0;
        font-style: italic;
        font-size: 1.35rem;
        line-height: 1.5;
        color: var(--stone);
    }

    .prose .dropcap::first-letter {
        font-family: var(--serif);
        float: left;
        font-size: 4.2rem;
        line-height: 0.78;
        padding: 6px 12px 0 0;
        color: var(--oxblood);
        font-weight: 500;
    }

/* ─── LEDGER (portfolio list) ────────────────────────────────────────── */
.ledger {
    border-top: 1px solid var(--hairline);
}

.ledger__row {
    display: grid;
    grid-template-columns: 48px 1.5fr 1.7fr auto;
    gap: clamp(1.25rem, 3vw, 2.75rem);
    align-items: center;
    padding: clamp(1.75rem, 3vw, 2.5rem) 0 clamp(1.75rem, 3vw, 2.5rem) 16px;
    margin-left: -16px;
    border-bottom: 1px solid var(--hairline);
    position: relative;
    transition: background .3s var(--ease), box-shadow .3s var(--ease);
    box-shadow: inset 0 0 0 0 var(--oxblood);
}

    .ledger__row:hover {
        background: var(--cream);
        box-shadow: inset 4px 0 0 var(--oxblood);
    }

.ledger__idx {
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--stone-2);
    transition: color .3s;
}

.ledger__row:hover .ledger__idx {
    color: var(--oxblood);
}

.ledger__namewrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ledger__sector {
    display: block;
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 7px;
}

.ledger__name {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--ink);
}

.ledger__desc {
    font-size: 0.96rem;
    color: var(--stone);
    line-height: 1.7;
}

.ledger__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    text-align: right;
    min-width: 116px;
}

.ledger__stat {
    display: block;
    font-family: var(--serif);
    font-size: 1.7rem;
    color: var(--ink);
    line-height: 1;
}

.ledger__stat-lbl {
    display: block;
    font-family: var(--sans);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone-2);
}

.ledger__arrow {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--oxblood);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s, transform .3s;
    justify-self: end;
}

.ledger__row:hover .ledger__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ─── JOURNAL (news) ─────────────────────────────────────────────────── */
.journal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
}

.entry {
    padding: 2.25rem clamp(1.5rem,2.5vw,2.25rem) 2.25rem 0;
    border-right: 1px solid var(--hairline);
    display: flex;
    flex-direction: column;
}

    .entry:last-child {
        border-right: none;
        padding-right: 0;
    }

    .entry:not(:first-child) {
        padding-left: clamp(1.5rem,2.5vw,2.25rem);
    }

.entry__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.entry__sector {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oxblood);
}

.entry__date {
    font-family: var(--sans);
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    color: var(--stone-2);
}

.entry__title {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: .75rem;
}

.entry__excerpt {
    font-size: 0.92rem;
    color: var(--stone);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─── LEADERS ────────────────────────────────────────────────────────── */
.leaders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
}

.leader {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.75rem;
    align-items: start;
    padding-top: 2rem;
    border-top: 1px solid var(--hairline);
}

.leader__portrait {
    width: 120px;
    height: 150px;
    object-fit: cover;
    object-position: top center;
    background: var(--parchment-deep);
    filter: grayscale(1) contrast(1.02);
}

.leader__ph {
    width: 120px;
    height: 150px;
    background: var(--ink);
    display: grid;
    place-items: end center;
    overflow: hidden;
}

    .leader__ph svg {
        width: 72px;
        opacity: .12;
    }

.leader__name {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.1;
}

.leader__role {
    font-family: var(--sans);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin: 8px 0 1rem;
}

.leader__bio {
    font-size: 0.95rem;
    color: var(--stone);
    line-height: 1.75;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.footer {
    background: var(--ink);
    color: var(--parchment);
    padding-top: clamp(4rem,8vw,6rem);
    padding-bottom: 2.5rem;
    border-top: 1px solid var(--oxblood);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--hairline-d);
    margin-bottom: 2rem;
}

.footer__crest {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.footer__crest-text {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--parchment);
}

.footer__tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(244,241,234,0.4);
    line-height: 1.6;
    max-width: 30ch;
    margin-bottom: 1.75rem;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__soc {
    width: 34px;
    height: 34px;
    border: 1px solid var(--hairline-d);
    display: grid;
    place-items: center;
    color: rgba(244,241,234,0.4);
    transition: all .15s;
}

    .footer__soc:hover {
        border-color: var(--oxblood);
        color: var(--parchment);
    }

    .footer__soc svg {
        width: 14px;
        height: 14px;
    }

.footer__ct {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244,241,234,0.35);
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer__link {
    font-family: var(--serif);
    font-size: 1rem;
    color: rgba(244,241,234,0.6);
    transition: color .15s;
}

    .footer__link:hover {
        color: var(--parchment);
    }

.footer__crow {
    margin-bottom: 1.1rem;
}

.footer__clbl {
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244,241,234,0.3);
    margin-bottom: 4px;
}

.footer__cval {
    font-family: var(--serif);
    font-size: 1rem;
    color: rgba(244,241,234,0.6);
    line-height: 1.55;
}

    .footer__cval a:hover {
        color: var(--parchment);
    }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: rgba(244,241,234,0.3);
}

.footer__legal {
    display: flex;
    gap: 1.75rem;
}

.footer__llink {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: rgba(244,241,234,0.3);
    transition: color .15s;
}

    .footer__llink:hover {
        color: rgba(244,241,234,0.6);
    }

:focus-visible {
    outline: 2px solid var(--oxblood);
    outline-offset: 3px;
}

.section--ink :focus-visible, .phero :focus-visible, .footer :focus-visible {
    outline-color: var(--rose);
}

/* ─── RESPONSIVE: SHARED ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .leaders {
        grid-template-columns: 1fr;
    }

    .figures__grid {
        grid-template-columns: 1fr 1fr;
    }

    .figure {
        border-left: none;
        padding-left: 0;
    }

        .figure:nth-child(2) {
            border-left: 1px solid var(--hairline-d);
            padding-left: clamp(1rem,2vw,2rem);
        }

    .figures--light .figure:nth-child(2) {
        border-left-color: var(--hairline);
    }

    .figure:nth-child(3), .figure:nth-child(4) {
        border-top: 1px solid var(--hairline-d);
        padding-top: 2rem;
        margin-top: .5rem;
    }

    .figures--light .figure:nth-child(3), .figures--light .figure:nth-child(4) {
        border-top-color: var(--hairline);
    }

    .figure:nth-child(4) {
        border-left: 1px solid var(--hairline-d);
        padding-left: clamp(1rem,2vw,2rem);
    }

    .figures--light .figure:nth-child(4) {
        border-left-color: var(--hairline);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .ledger__row {
        grid-template-columns: 32px 1fr;
        row-gap: .75rem;
        align-items: start;
        column-gap: 1.25rem;
    }

    .ledger__idx {
        padding-top: 3px;
    }

    .ledger__namewrap {
        align-self: center;
    }

    .ledger__desc {
        grid-column: 1 / -1;
    }

    .ledger__meta {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: baseline;
        gap: 1.5rem;
        text-align: left;
        margin-top: .25rem;
    }

    .ledger__arrow {
        display: none;
    }

    .journal {
        grid-template-columns: 1fr;
    }

    .entry {
        border-right: none;
        border-bottom: 1px solid var(--hairline);
        padding: 2rem 0;
    }

        .entry:not(:first-child) {
            padding-left: 0;
        }

        .entry:last-child {
            border-bottom: none;
        }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 68px;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mnav {
        display: block;
    }

    .shead {
        grid-template-columns: 1fr;
        gap: .5rem;
    }

    .figures__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 17px;
    }

    .leader {
        grid-template-columns: 1fr;
    }

    .leader__portrait, .leader__ph {
        width: 110px;
        height: 138px;
    }

    .prose .dropcap::first-letter {
        font-size: 3.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   IMAGE SYSTEM
   ─────────────────────────────────────────────────────────────────────── */
.fig {
    position: relative;
    overflow: hidden;
    background: var(--parchment-deep);
}

.fig > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.02);
    transition: filter .5s var(--ease), transform .9s var(--ease);
}
.journal_dynamic_image .fig > img {
    filter: saturate(0.72) contrast(1.02) brightness(0.99);
}
.journal_dynamic_image .fig:hover > img {
    filter: saturate(0.85) contrast(1.03);
}

.section--ink .fig > img, .phero .fig > img {
    filter: saturate(0.6) contrast(1.05) brightness(0.92);
}

.fig--wide {
    aspect-ratio: 16 / 9;
}

.fig--photo {
    aspect-ratio: 4 / 3;
}

.fig--tall {
    aspect-ratio: 3 / 4;
}

.fig--square {
    aspect-ratio: 1 / 1;
}

.fig--banner {
    aspect-ratio: 21 / 9;
}

.fig__slot {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 1.5rem;
    background: repeating-linear-gradient(45deg, transparent, transparent 11px, rgba(90,31,34,0.035) 11px, rgba(90,31,34,0.035) 12px), var(--parchment-deep);
    border: 1px solid var(--hairline);
}

.fig--ink .fig__slot {
    background: repeating-linear-gradient(45deg, transparent, transparent 11px, rgba(244,241,234,0.03) 11px, rgba(244,241,234,0.03) 12px), #16160F;
    border-color: var(--hairline-d);
}

.fig__slot-icon {
    width: 34px;
    height: 34px;
    color: var(--oxblood);
    opacity: 0.55;
}

.fig--ink .fig__slot-icon {
    color: var(--rose);
    opacity: 0.5;
}

.fig__slot-label {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone-2);
    line-height: 1.5;
    max-width: 24ch;
}

.fig--ink .fig__slot-label {
    color: rgba(244,241,234,0.4);
}

.fig__slot-dim {
    font-family: var(--sans);
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    color: var(--stone-2);
    opacity: 0.65;
}

.fig--ink .fig__slot-dim {
    color: rgba(244,241,234,0.3);
}

.fig > img {
    position: relative;
    z-index: 1;
}

.fig-caption {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.92rem;
    color: var(--stone-2);
    margin-top: 0.85rem;
}

.hero__photo, .phero__photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

    .hero__photo img, .phero__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(1) contrast(1.02);
    }

    .hero__photo::after, .phero__photo::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(20,20,15,0.92) 0%, rgba(20,20,15,0.72) 45%, rgba(20,20,15,0.5) 100%);
    }

.hero__photo-slot, .phero__photo-slot {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: repeating-linear-gradient(45deg, transparent, transparent 13px, rgba(244,241,234,0.022) 13px, rgba(244,241,234,0.022) 14px);
}

    .hero__photo-slot span, .phero__photo-slot span {
        font-family: var(--sans);
        font-size: 0.62rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(244,241,234,0.25);
    }

.imgsplit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.imgsplit__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem,5vw,4.5rem);
}

.imgsplit__copy--pad-r {
    padding-left: 0;
}

.imgsplit__copy--pad-l {
    padding-right: 0;
}

.imgsplit .fig {
    min-height: 360px;
}

@media (max-width: 820px) {
    .imgsplit {
        grid-template-columns: 1fr;
    }

    .imgsplit__copy {
        padding: clamp(2rem,5vw,3rem) 0;
    }

    .imgsplit .fig {
        min-height: 260px;
    }
}

.entry .fig {
    margin-bottom: 1.25rem;
}

.prose .fig {
    margin-bottom: 2rem;
}

    .prose .fig + p.lede {
        margin-top: 0;
    }

.phero__photo ~ .phero__plate {
    background: radial-gradient(120% 100% at 78% 25%, rgba(90,31,34,0.30) 0%, transparent 55%);
}

.phero__photo {
    z-index: 0;
}

.phero__plate {
    z-index: 1 !important;
    pointer-events: none;
}

.phero__inner {
    position: relative;
    z-index: 2;
}

/* ─── BREADCRUMB STRIP ───────────────────────────────────────────────── */
.crumbstrip {
    background: var(--parchment);
    border-bottom: 1px solid var(--hairline);
    padding-top: var(--nav-h);
}

.crumbstrip__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-block: 0.85rem;
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-2);
    flex-wrap: wrap;
}

    .crumbstrip__inner a {
        transition: color .15s;
    }

        .crumbstrip__inner a:hover {
            color: var(--oxblood);
        }

    .crumbstrip__inner span[aria-current] {
        color: var(--ink);
        font-weight: 500;
    }

    .crumbstrip__inner span[aria-hidden] {
        opacity: 0.45;
        font-weight: 400;
    }

.phero--with-crumbs {
    padding-top: clamp(3rem, 7vw, 5.5rem);
}

@media (max-width: 768px) {
    .crumbstrip {
        padding-top: var(--nav-h);
    }

    .crumbstrip__inner {
        font-size: 0.62rem;
        gap: 8px;
        padding-block: 0.7rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES (originally inline <style> blocks)
   ─────────────────────────────────────────────────────────────────────── */

/* ─── HOME PAGE ──────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero__frame {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    top: calc(var(--nav-h) + 28px);
    left: var(--gutter);
    right: var(--gutter);
    bottom: 28px;
    border: 1px solid rgba(244,241,234,0.08);
}

.hero__plate {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(120% 90% at 75% 30%, rgba(90,31,34,0.28) 0%, transparent 55%);
}

.hero__top {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    padding-top: var(--nav-h);
}

.hero__content {
    padding-block: clamp(3rem,8vh,6rem);
    max-width: 60ch;
}

.hero__kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2.25rem;
}

.hero__kicker-rule {
    width: 48px;
    height: 1px;
    background: var(--rose);
    flex-shrink: 0;
}

.hero__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.6rem,6vw,5rem);
    line-height: 1.08;
    letter-spacing: 0.005em;
    color: var(--parchment);
    margin-bottom: 2rem;
}

    .hero__title em {
        font-style: italic;
        color: var(--rose);
    }

.hero__lead {
    font-size: clamp(1.05rem,1.3vw,1.25rem);
    line-height: 1.85;
    color: rgba(244,241,234,0.62);
    max-width: 52ch;
    margin-bottom: 2.5rem;
}

.hero__rule {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(244,241,234,0.1);
}

.hero__rule-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 1.5rem;
    flex-wrap: wrap;
}

.hero__rule-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(244,241,234,0.45);
}

.hero__scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(244,241,234,0.4);
    font-family: var(--sans);
    font-size: 0.64rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(244,241,234,0.3);
    position: relative;
    overflow: hidden;
}

    .hero__scroll-line::after {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--parchment);
        transform: translateX(-100%);
        animation: sweep 2.6s var(--ease) infinite;
    }

@keyframes sweep {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem,7vw,7rem);
    align-items: start;
}

.about__lede {
    font-family: var(--serif);
    font-size: clamp(1.5rem,2.4vw,2.1rem);
    line-height: 1.45;
    font-weight: 400;
    color: var(--ink);
}

    .about__lede em {
        font-style: italic;
        color: var(--oxblood);
    }

.about__body p {
    font-size: 1.05rem;
    color: var(--stone);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

    .about__body p:first-child::first-letter {
        font-family: var(--serif);
        float: left;
        font-size: 4.2rem;
        line-height: 0.78;
        padding: 6px 12px 0 0;
        color: var(--oxblood);
        font-weight: 500;
    }

.about__sign {
    margin-top: 2rem;
}

.about__sign-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--ink);
}

.about__sign-role {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stone-2);
    margin-top: 6px;
}

.invite {
    text-align: center;
    max-width: 60ch;
    margin-inline: auto;
}

.invite__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.25rem,4vw,3.5rem);
    line-height: 1.15;
    color: var(--parchment);
    margin: 1.5rem 0;
}

    .invite__title em {
        font-style: italic;
        color: var(--rose);
    }

.invite__body {
    font-size: 1.1rem;
    color: rgba(244,241,234,0.55);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

@media (max-width:1024px) {
    .about__grid {
        grid-template-columns: 1fr;
    }
}

/* ─── ABOUT / VALUES PAGE ────────────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
}

.value {
    padding: 2.25rem 2.25rem 2.25rem 0;
    border-bottom: 1px solid var(--hairline);
    border-right: 1px solid var(--hairline);
}

    .value:nth-child(even) {
        padding-right: 0;
        border-right: none;
        padding-left: 2.25rem;
    }

.value__n {
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    color: var(--oxblood);
}

.value__t {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--ink);
    margin: .75rem 0 .5rem;
}

.value__d {
    font-size: 0.98rem;
    color: var(--stone);
    line-height: 1.75;
}

@media (max-width:640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value, .value:nth-child(even) {
        padding: 2rem 0;
        border-right: none;
        padding-left: 0;
    }
}

/* ─── CHAIRMAN PAGE ──────────────────────────────────────────────────── */
.chair {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(2.5rem,6vw,5rem);
    align-items: start;
}

.chair__portrait {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
    background: var(--parchment-deep);
    filter: grayscale(1) contrast(1.02);
}

.chair__ph {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4/5;
    background: var(--ink);
    display: grid;
    place-items: end center;
    overflow: hidden;
}

    .chair__ph svg {
        width: 120px;
        opacity: .12;
    }

.chair__caption {
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stone-2);
    margin-top: 1rem;
}

.chair__sign-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--ink);
    margin-top: 2.5rem;
}

.chair__sign-role {
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stone-2);
    margin-top: 6px;
}

@media (max-width:768px) {
    .chair {
        grid-template-columns: 1fr;
    }

    .chair__portrait, .chair__ph {
        max-width: 220px;
    }
}

/* ─── LEADERSHIP PAGE ────────────────────────────────────────────────── */
.lead-full {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: clamp(2rem,5vw,4rem);
    align-items: start;
    padding-block: clamp(2.5rem,5vw,3.5rem);
    border-top: 1px solid var(--hairline);
}

.lead-full__portrait {
    width: 200px;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
    background: var(--parchment-deep);
    filter: grayscale(1) contrast(1.02);
}

.lead-full__ph {
    width: 200px;
    aspect-ratio: 4/5;
    background: var(--ink);
    display: grid;
    place-items: end center;
    overflow: hidden;
}

    .lead-full__ph svg {
        width: 96px;
        opacity: .12;
    }

.lead-full__name {
    font-family: var(--serif);
    font-size: clamp(1.75rem,3vw,2.4rem);
    color: var(--ink);
    line-height: 1.1;
}

.lead-full__role {
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin: 10px 0 1.25rem;
}

.lead-full__bio p {
    font-size: 1.05rem;
    color: var(--stone);
    line-height: 1.85;
    margin-bottom: 1rem;
}

@media (max-width:768px) {
    .lead-full {
        grid-template-columns: 1fr;
    }

    .lead-full__portrait, .lead-full__ph {
        width: 160px;
    }
}

/* ─── LEGACY PAGE ────────────────────────────────────────────────────── */
.timeline {
    border-top: 1px solid var(--hairline);
}

.tl {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: clamp(1.5rem,4vw,3.5rem);
    padding-block: clamp(2rem,4vw,3rem);
    padding-left: 16px;
    margin-left: -16px;
    border-bottom: 1px solid var(--hairline);
    align-items: baseline;
    transition: background .3s var(--ease), box-shadow .3s var(--ease);
    box-shadow: inset 0 0 0 0 var(--oxblood);
}

    .tl:hover {
        background: var(--cream);
        box-shadow: inset 4px 0 0 var(--oxblood);
    }

.tl__year {
    font-family: var(--serif);
    font-size: clamp(2rem,4vw,3rem);
    color: var(--oxblood);
    line-height: 1;
}

.tl__t {
    font-family: var(--serif);
    font-size: clamp(1.4rem,2.4vw,1.9rem);
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: .6rem;
}

.tl__d {
    font-size: 1rem;
    color: var(--stone);
    line-height: 1.8;
    max-width: 60ch;
}

@media (max-width:640px) {
    .tl {
        grid-template-columns: 1fr;
        gap: .5rem;
    }
}

/* ─── BUSINESS DETAIL PAGES (Pathways, CulinArt, Edsy, Facilities) ───── */
.biz-figures {
    margin-top: clamp(2.5rem,5vw,4rem);
}

.biz-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(2.5rem,6vw,5rem);
    align-items: start;
}

.biz-aside {
    border-left: 1px solid var(--hairline);
    padding-left: clamp(1.5rem,3vw,2.5rem);
}

.biz-aside__row {
    padding: 1rem 0;
    border-bottom: 1px solid var(--hairline);
}

    .biz-aside__row:last-child {
        border-bottom: none;
    }

.biz-aside__k {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stone-2);
    margin-bottom: 4px;
}

.biz-aside__v {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ink);
}

    .biz-aside__v a {
        color: var(--oxblood);
        border-bottom: 1px solid var(--oxblood);
    }

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
    margin-top: 1rem;
}

.offer {
    background: var(--parchment);
    padding: 1.5rem;
}

.offer__t {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ink);
}

.offer__d {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.6;
    margin-top: .4rem;
}

.next-biz {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.next-biz__label {
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone-2);
    margin-bottom: .5rem;
}

.next-biz__name {
    font-family: var(--serif);
    font-size: clamp(1.75rem,3vw,2.5rem);
    color: var(--ink);
}

@media (max-width:820px) {
    .biz-body {
        grid-template-columns: 1fr;
    }

    .biz-aside {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--hairline);
        padding-top: 1.5rem;
    }

    .offer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:480px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── JOURNAL PAGE ───────────────────────────────────────────────────── */
.jfeature {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem,5vw,4rem);
    align-items: center;
    padding-bottom: clamp(2.5rem,5vw,4rem);
    border-bottom: 1px solid var(--hairline);
    margin-bottom: clamp(2.5rem,5vw,4rem);
}

.jfeature__img {
    aspect-ratio: 4/3;
    background: var(--ink);
    display: grid;
    place-items: center;
}

    .jfeature__img svg {
        width: 48px;
        opacity: .14;
    }

.jfeature__sector {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oxblood);
}

.jfeature__date {
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    color: var(--stone-2);
    margin-left: 10px;
}

.jfeature__t {
    font-family: var(--serif);
    font-size: clamp(1.75rem,3.2vw,2.6rem);
    line-height: 1.2;
    color: var(--ink);
    margin: 1rem 0;
}

.jfeature__d {
    font-size: 1.05rem;
    color: var(--stone);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.jlist {
    display: grid;
    grid-template-columns: 1fr;
}

.jrow {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: clamp(1rem,3vw,2.5rem);
    align-items: baseline;
    padding-block: 1.75rem;
    padding-left: 16px;
    margin-left: -16px;
    border-bottom: 1px solid var(--hairline);
    transition: background .3s var(--ease), box-shadow .3s var(--ease);
    box-shadow: inset 0 0 0 0 var(--oxblood);
}

    .jrow:hover {
        background: var(--cream);
        box-shadow: inset 4px 0 0 var(--oxblood);
    }

.jrow__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.jrow__sector {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oxblood);
}

.jrow__date {
    font-family: var(--sans);
    font-size: 0.66rem;
    color: var(--stone-2);
}

.jrow__t {
    font-family: var(--serif);
    font-size: clamp(1.2rem,2vw,1.55rem);
    color: var(--ink);
    line-height: 1.3;
}

.jrow__arrow {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--oxblood);
    opacity: 0;
    transition: opacity .3s;
}

.jrow:hover .jrow__arrow {
    opacity: 1;
}

@media (max-width:768px) {
    .jfeature {
        grid-template-columns: 1fr;
    }

    .jfeature__img {
        order: -1;
    }

    .jrow {
        grid-template-columns: 100px 1fr;
    }

    .jrow__arrow {
        display: none;
    }
}

/* ─── CAREERS PAGE ───────────────────────────────────────────────────── */
.roles {
    border-top: 1px solid var(--hairline);
}

.role {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding-block: clamp(1.5rem,3vw,2.25rem);
    padding-left: 16px;
    margin-left: -16px;
    border-bottom: 1px solid var(--hairline);
    transition: background .3s var(--ease), box-shadow .3s var(--ease);
    box-shadow: inset 0 0 0 0 var(--oxblood);
}

    .role:hover {
        background: var(--cream);
        box-shadow: inset 4px 0 0 var(--oxblood);
    }

.role__sector {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 6px;
}

.role__t {
    font-family: var(--serif);
    font-size: clamp(1.4rem,2.4vw,1.85rem);
    color: var(--ink);
    line-height: 1.2;
}

.role__loc {
    font-family: var(--sans);
    font-size: 0.78rem;
    color: var(--stone);
    margin-top: 6px;
}

.role__cta {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--oxblood);
    white-space: nowrap;
}

.why {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: clamp(1.5rem,3vw,2.5rem);
}

.why__item__t {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: .5rem;
}

.why__item__d {
    font-size: 0.98rem;
    color: var(--stone);
    line-height: 1.75;
}

@media (max-width:768px) {
    .why {
        grid-template-columns: 1fr;
    }

    .role {
        grid-template-columns: 1fr;
    }

    .role__cta {
        justify-self: start;
    }
}

/* ─── CONTACT PAGE ───────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem,6vw,5rem);
    align-items: start;
}

.cfield {
    margin-bottom: 1.5rem;
}

    .cfield label {
        display: block;
        font-family: var(--sans);
        font-size: 0.66rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--stone-2);
        margin-bottom: .6rem;
    }

    .cfield input, .cfield select, .cfield textarea {
        width: 100%;
        font-family: var(--serif);
        font-size: 1.05rem;
        color: var(--ink);
        background: var(--cream);
        border: 1px solid var(--hairline);
        padding: 12px 14px;
        transition: border-color .2s;
    }

        .cfield input:focus, .cfield select:focus, .cfield textarea:focus {
            outline: none;
            border-color: var(--oxblood);
        }

    .cfield textarea {
        resize: vertical;
        min-height: 140px;
    }

.cinfo__row {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--hairline);
}

    .cinfo__row:first-child {
        border-top: 1px solid var(--hairline);
    }

.cinfo__k {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stone-2);
    margin-bottom: 6px;
}

.cinfo__v {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.5;
}

    .cinfo__v a {
        color: var(--oxblood);
    }

@media (max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── EDSY EMBED FORM ────────────────────────────────────────────────── */
#edsyfrmembedbdy {
    width: 100% !important;
    padding-top: 0 !important;
    border-radius: 0;
    overflow: visible;
}

    #edsyfrmembedbdy iframe {
        width: 100% !important;
        height: auto !important;
        min-height: 720px;
        border: none;
        background: var(--cream);
    }

@media (max-width: 768px) {
    #edsyfrmembedbdy iframe {
        min-height: 640px;
    }
}

/* ─── NEWS DETAILS ───────────────────────────────────────────────────── */
.news-detail__video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-inline: auto;
    border: 1px solid rgba(244,241,234,0.08);
}

    .news-detail__video iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.news-detail__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 3rem;
}

.news-detail__gallery-item {
    cursor: pointer;
    overflow: hidden;
    background: var(--parchment-deep);
    transition: filter .35s var(--ease);
}

.news-detail__gallery-item:hover {
    filter: brightness(0.94);
}

.news-detail__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
    filter: grayscale(1) contrast(1.02);
    transition: filter .5s var(--ease), transform .9s var(--ease);
}
.journal_dynamic_image .news-detail__gallery-item img {
    filter: saturate(0.72) contrast(1.02) brightness(0.99);
}
.news-detail__gallery-item:hover img {
    transform: scale(1.03);
}
.journal_dynamic_image .news-detail__gallery-item:hover img {
    filter: saturate(0.9) contrast(1.03);
}

.news-detail__pdf {
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .news-detail__gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-detail__video {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .news-detail__gallery {
        grid-template-columns: 1fr;
    }
}

/* ─── PROSE TABLES ───────────────────────────────────────────────────── */
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink);
    border: 1px solid var(--hairline);
}

.prose thead {
    background: var(--parchment-deep);
}

.prose th {
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--oxblood);
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--hairline);
}

.prose td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--hairline);
    color: var(--stone);
}

.prose tr:last-child td {
    border-bottom: none;
}

.prose tbody tr:hover {
    background: var(--cream);
}

/* ─── LIGHTBOX ───────────────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(26,26,24,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s;
}

    .lightbox.open {
        opacity: 1;
        visibility: visible;
    }

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: rgba(244,241,234,0.6);
    font-family: var(--serif);
    font-size: 1.8rem;
    transition: color .2s;
    line-height: 1;
}

    .lightbox__close:hover {
        color: var(--parchment);
    }

.lightbox__prev, .lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: rgba(244,241,234,0.5);
    font-family: var(--serif);
    font-size: 2.2rem;
    transition: color .2s;
}

    .lightbox__prev:hover, .lightbox__next:hover {
        color: var(--parchment);
    }

.lightbox__prev {
    left: clamp(8px, 3vw, 32px);
}

.lightbox__next {
    right: clamp(8px, 3vw, 32px);
}

.lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: rgba(244,241,234,0.45);
    text-transform: uppercase;
}

body.lightbox-open {
    overflow: hidden;
}
