:root {
    --black: #020202;
    --black-soft: #0a0a09;
    --charcoal: #111210;
    --charcoal-2: #171815;
    --bone: #f7f2e8;
    --paper: #ded5c4;
    --muted: #a9a092;
    --muted-2: #756d60;
    --gold: #caa45f;
    --gold-bright: #f0d08b;
    --gold-dim: #7e6030;
    --teal: #126b82;
    --border: rgba(202, 164, 95, 0.22);
    --border-strong: rgba(240, 208, 139, 0.42);
    --shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
    --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: "Cormorant Garamond", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    --shell: min(1180px, calc(100vw - 152px));
    --shell-narrow: min(760px, calc(100vw - 152px));
}

* {
    box-sizing: border-box;
}

html {
    background: #050505;
    scroll-behavior: smooth;
    overscroll-behavior-y: none;
}

html.smooth-scroll-active {
    scroll-behavior: auto !important;
}

body {
    margin: 0;
    color: var(--bone);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 88px 88px,
        linear-gradient(180deg, #060606 0%, #121310 48%, #050505 100%);
    background-color: #050505;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.68;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 3px 3px, 4px 4px;
    mix-blend-mode: overlay;
}

a {
    color: inherit;
    text-decoration-color: rgba(202, 164, 95, 0.62);
    text-underline-offset: 0.22em;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 200;
    transform: translateY(-150%);
    padding: 10px 14px;
    border: 1px solid var(--border-strong);
    background: var(--black);
    color: var(--gold-bright);
}

.skip-link:focus {
    transform: translateY(0);
}

.content-shell {
    width: var(--shell);
    margin-inline: auto;
}

.content-shell--narrow {
    width: var(--shell-narrow);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(202, 164, 95, 0.16);
    background: rgba(2, 2, 2, 0.78);
    backdrop-filter: blur(18px);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 208, 139, 0.55), transparent);
    transform-origin: left;
    animation: headerLine 6s ease-in-out infinite;
}

.site-header__inner,
.site-footer__inner {
    width: var(--shell);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header__inner {
    min-height: 62px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.monogram {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--gold-bright);
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 0 30px rgba(202, 164, 95, 0.36);
}

.monogram span {
    position: absolute;
    left: 24px;
    top: 15px;
    color: var(--gold);
    font-size: 20px;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 36px);
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    padding: 22px 0;
    color: rgba(247, 242, 232, 0.86);
    text-decoration: none;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    height: 1px;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.luxury-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 23px;
    border: 1px solid var(--border-strong);
    color: var(--gold-bright);
    background: linear-gradient(135deg, rgba(202, 164, 95, 0.12), rgba(202, 164, 95, 0.02));
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease, background 240ms ease;
}

.luxury-button:hover,
.luxury-button:focus-visible {
    border-color: rgba(240, 208, 139, 0.86);
    background: linear-gradient(135deg, rgba(202, 164, 95, 0.2), rgba(202, 164, 95, 0.04));
    box-shadow: 0 0 32px rgba(202, 164, 95, 0.18);
    transform: translateY(-2px);
}

.luxury-button--quiet {
    background: transparent;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid var(--border);
    color: var(--gold-bright);
    background: transparent;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
}

.site-main {
    min-height: 70vh;
}

.hero-section {
    position: relative;
    min-height: clamp(560px, 58vh, 680px);
    overflow: hidden;
    border-bottom: 1px solid rgba(202, 164, 95, 0.14);
    background:
        linear-gradient(90deg, rgba(2, 2, 2, 1) 0%, rgba(2, 2, 2, 0.96) 22%, rgba(2, 2, 2, 0.58) 47%, rgba(2, 2, 2, 0.08) 70%, rgba(2, 2, 2, 0.44) 100%),
        linear-gradient(0deg, rgba(2, 2, 2, 0.36), rgba(2, 2, 2, 0.02) 36%),
        url("../img/reeghannyce-hero-banner.png") right center / auto 100% no-repeat,
        #050505;
}

.hero-backdrop,
.hero-grid,
.hero-sheen {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    opacity: 0.13;
    background:
        linear-gradient(90deg, rgba(202, 164, 95, 0.12) 1px, transparent 1px) 0 0 / 96px 96px,
        linear-gradient(rgba(202, 164, 95, 0.08) 1px, transparent 1px) 0 0 / 96px 96px;
    mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-sheen {
    width: 46%;
    background: linear-gradient(105deg, transparent 0%, rgba(240, 208, 139, 0.12) 48%, transparent 100%);
    transform: translateX(-100%) skewX(-14deg);
    animation: sheen 8s 1.2s ease-in-out infinite;
}

.hero-layout {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(560px, 58vh, 680px);
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 430px;
    padding: clamp(38px, 5vw, 60px) 0;
}

.eyebrow,
.entry-meta {
    margin: 0 0 17px;
    color: var(--gold-bright);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--bone);
    font-family: var(--font-serif);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(58px, 7vw, 88px);
    text-transform: uppercase;
    text-shadow: 0 18px 52px rgba(0, 0, 0, 0.48);
}

h2 {
    font-size: clamp(28px, 3vw, 38px);
    max-width: 720px;
}

h3 {
    font-size: 26px;
}

.gold-rule {
    display: block;
    width: 86px;
    height: 2px;
    margin: 24px 0 22px;
    background: linear-gradient(90deg, var(--gold-bright), var(--gold-dim));
    box-shadow: 0 0 20px rgba(202, 164, 95, 0.28);
}

.hero-intro,
.section-copy p,
.venture-card p,
.post-card p {
    color: rgba(247, 242, 232, 0.78);
}

.hero-intro {
    max-width: 370px;
    margin: 0 0 18px;
    font-size: 14.5px;
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.quiet-link {
    color: rgba(247, 242, 232, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
}

.hero-portrait-wrap {
    display: none;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 205px;
    align-items: stretch;
    min-height: 100%;
}

.portrait-frame {
    position: relative;
    align-self: end;
    height: min(760px, calc(100svh - 78px));
    min-height: 610px;
    overflow: hidden;
    transform-style: preserve-3d;
    isolation: isolate;
}

.portrait-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(2, 2, 2, 0.72) 0%, rgba(2, 2, 2, 0.05) 38%, rgba(2, 2, 2, 0.1) 72%, rgba(2, 2, 2, 0.9) 100%),
        linear-gradient(0deg, rgba(2, 2, 2, 0.66) 0%, transparent 33%);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 32%;
    filter: saturate(0.95) contrast(1.1) brightness(0.78);
    transform: scale(1.05);
    animation: none;
}

.portrait-vignette {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    height: 40%;
    background: linear-gradient(0deg, rgba(2, 2, 2, 0.88), transparent);
}

.artifact-column {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-left: 1px solid rgba(202, 164, 95, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        #080807;
}

.artifact-column::before,
.artifact-column::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    height: 1px;
    background: rgba(202, 164, 95, 0.17);
}

.artifact-column::before {
    top: 34%;
}

.artifact-column::after {
    top: 66%;
}

.shelf-light {
    position: absolute;
    top: 112px;
    left: 22px;
    right: 22px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    filter: blur(0.4px);
    box-shadow: 0 0 28px rgba(240, 208, 139, 0.58);
}

.artifact-globe {
    position: absolute;
    top: 165px;
    left: 48px;
    width: 88px;
    height: 88px;
    border: 1px solid rgba(240, 208, 139, 0.55);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, rgba(240, 208, 139, 0.42), transparent 22%),
        linear-gradient(135deg, rgba(202, 164, 95, 0.32), rgba(2, 2, 2, 0.1));
    box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.6), 0 0 36px rgba(202, 164, 95, 0.17);
}

.artifact-globe::after {
    content: "";
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: -42px;
    height: 42px;
    border-left: 1px solid rgba(240, 208, 139, 0.44);
    border-right: 1px solid rgba(240, 208, 139, 0.28);
}

.artifact-book {
    position: absolute;
    right: 42px;
    width: 16px;
    height: 90px;
    background: rgba(247, 242, 232, 0.13);
    border: 1px solid rgba(240, 208, 139, 0.14);
}

.artifact-book--one {
    top: 186px;
}

.artifact-book--two {
    top: 190px;
    right: 66px;
    height: 82px;
}

.artifact-line {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 112px;
    height: 1px;
    background: rgba(240, 208, 139, 0.2);
}

.section-band {
    position: relative;
    padding: clamp(70px, 8vh, 108px) 0;
    border-bottom: 1px solid rgba(202, 164, 95, 0.13);
    background:
        radial-gradient(ellipse at 14% 8%, rgba(240, 208, 139, 0.07), transparent 34%),
        linear-gradient(135deg, #111210 0%, #151612 44%, #090a09 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1fr);
    gap: clamp(54px, 9vw, 108px);
    align-items: center;
}

.section-copy p {
    max-width: 520px;
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.65;
}

.section-copy .luxury-button {
    margin-top: 12px;
}

.credential-panel {
    position: relative;
    padding: clamp(32px, 4vw, 48px);
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 36%),
        rgba(3, 3, 3, 0.3);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.credential-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    background: linear-gradient(120deg, rgba(240, 208, 139, 0.2), transparent 34%, rgba(240, 208, 139, 0.09)) border-box;
    mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.credential-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(202, 164, 95, 0.15);
}

.credential-card:first-child {
    padding-top: 0;
}

.credential-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.credential-card__mark,
.venture-mark {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(240, 208, 139, 0.38);
    color: var(--gold-bright);
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1;
}

.credential-card h3,
.venture-card h3 {
    margin: 0 0 8px;
    color: var(--gold-bright);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.credential-card p {
    margin: 0;
    color: rgba(247, 242, 232, 0.74);
    font-size: 15px;
    line-height: 1.6;
}

.ventures-section {
    padding: clamp(76px, 8vh, 112px) 0 clamp(64px, 7vh, 96px);
    background:
        radial-gradient(ellipse at 50% -10%, rgba(240, 208, 139, 0.09), transparent 34%),
        linear-gradient(180deg, #111210 0%, #151613 56%, #0b0b0a 100%);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .gold-rule {
    margin-inline: auto;
}

.venture-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.venture-card {
    position: relative;
    min-height: 190px;
    padding: 34px 30px 28px;
    overflow: hidden;
    border: 1px solid rgba(202, 164, 95, 0.12);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 44%),
        #050505;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
    display: grid;
    grid-template-rows: 96px auto 1fr;
    transform-style: preserve-3d;
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.venture-card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(240, 208, 139, 0.11) 48%, transparent 100%);
    transform: translateX(-80%);
    transition: opacity 260ms ease;
}

.venture-card:hover {
    border-color: rgba(240, 208, 139, 0.35);
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.44);
}

.venture-card:hover::after {
    opacity: 1;
    animation: cardSheen 900ms ease;
}

.venture-card p {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.58;
}

.venture-logo {
    position: relative;
    z-index: 1;
    display: block;
    width: 278px;
    height: 84px;
    margin: 0;
    align-self: center;
    object-fit: contain;
    object-position: left center;
    filter: saturate(0.98) contrast(1.08);
}

.venture-logo--holdings {
    filter: brightness(1.02) contrast(1.08) saturate(1.02);
}

.venture-logo--flow {
    opacity: 0.98;
    filter: brightness(1.28) contrast(1.14) saturate(1.08);
}

.venture-logo--blackspire-wide {
    filter: brightness(1.42) contrast(1.18) saturate(0.98);
    transform: translateY(-10px);
}

.venture-mark {
    margin-bottom: 16px;
    border: 0;
    font-size: 54px;
    background: transparent;
    text-shadow: 0 0 34px rgba(202, 164, 95, 0.28);
}

.venture-mark--flow {
    color: #38b7df;
    font-family: var(--font-sans);
    font-size: 44px;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.venture-history-hero {
    position: relative;
    padding: clamp(98px, 12vw, 152px) 0 clamp(54px, 7vw, 86px);
    overflow: hidden;
    border-bottom: 1px solid rgba(202, 164, 95, 0.14);
    background:
        radial-gradient(ellipse at 70% 12%, rgba(202, 164, 95, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(2, 2, 2, 0.78), rgba(13, 14, 12, 0.96)),
        #050505;
}

.venture-history-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.36;
    background:
        linear-gradient(115deg, transparent 0 46%, rgba(240, 208, 139, 0.08) 46.2% 46.8%, transparent 47%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 96px 96px;
}

.venture-history-hero .content-shell {
    position: relative;
    z-index: 1;
}

.venture-history-hero h1 {
    max-width: 720px;
    margin: 0;
}

.venture-history-hero .hero-intro {
    max-width: 620px;
}

.venture-history-section {
    padding: clamp(56px, 7vw, 90px) 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(202, 164, 95, 0.08), transparent 32%),
        linear-gradient(180deg, #111210 0%, #070707 100%);
}

.venture-timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.venture-timeline::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 88px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(240, 208, 139, 0.34), transparent);
}

.history-card {
    position: relative;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: clamp(24px, 3.6vw, 48px);
    min-height: 224px;
    padding: clamp(22px, 3vw, 32px);
    overflow: hidden;
    border: 1px solid rgba(202, 164, 95, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%),
        rgba(5, 5, 5, 0.9);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.history-card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.58;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(202, 164, 95, 0.06), transparent 42%);
}

.history-logo-wrap {
    position: relative;
    z-index: 1;
    align-self: center;
    display: grid;
    place-items: center;
    width: 250px;
    height: 218px;
    margin-left: -4px;
    border: 0;
    background: transparent;
}

.history-logo-wrap img {
    width: 196px;
    height: 196px;
    max-width: none;
    object-fit: contain;
    opacity: 0.94;
    filter:
        drop-shadow(0 0 18px rgba(214, 179, 116, 0.13))
        drop-shadow(0 0 34px rgba(214, 179, 116, 0.06))
        drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.history-logo-wrap--large img {
    width: 196px;
    height: 196px;
}

.history-logo-wrap--slimkrag img,
.history-logo-wrap--ultraz img {
    width: 278px;
    height: 199px;
}

.history-logo-wrap--ultraz img {
    width: 292px;
    height: 209px;
}

.history-logo-wrap--nyce-3d .history-icon {
    width: 178px;
    height: 178px;
}

.history-logo-wrap--electi-media img {
    width: 184px;
    height: 184px;
}

.history-logo-wrap--electi-trading img {
    width: 206px;
    height: 206px;
}

.history-logo-wrap--affiniti img {
    width: 280px;
    height: 200px;
}

.history-logo-wrap--nyce-legacy img {
    width: 296px;
    height: 211px;
}

.history-icon {
    width: 178px;
    height: 178px;
    color: var(--gold-bright);
    filter:
        drop-shadow(0 0 18px rgba(214, 179, 116, 0.13))
        drop-shadow(0 0 34px rgba(214, 179, 116, 0.06))
        drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.history-content {
    position: relative;
    z-index: 1;
}

.history-kicker {
    margin: 0 0 8px;
    color: var(--gold-bright);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.history-card h2 {
    margin: 0 0 10px;
    max-width: 780px;
    font-size: clamp(25px, 2.5vw, 34px);
    line-height: 1.06;
}

.history-role {
    margin: 0 0 16px;
    padding-top: 2px;
    color: rgba(247, 242, 232, 0.78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.45;
    text-transform: uppercase;
}

.history-content p {
    max-width: 820px;
    margin: 0 0 11px;
    color: rgba(247, 242, 232, 0.78);
    font-size: 14px;
    line-height: 1.58;
}

.history-content p:last-child {
    margin-bottom: 0;
}

.history-content strong {
    color: var(--bone);
}

.writings-section {
    background:
        linear-gradient(180deg, #10110f 0%, #080808 100%);
}

.post-list {
    display: grid;
    gap: 22px;
}

.post-list--luxury {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 24px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(202, 164, 95, 0.14);
    background: rgba(255, 255, 255, 0.025);
}

.post-list--luxury .post-card {
    grid-template-columns: 1fr;
    min-height: 220px;
}

.post-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-left: 2px solid rgba(240, 208, 139, 0.55);
    opacity: 0.42;
}

.post-card__image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(0.8);
}

.post-card__title {
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1;
}

.post-card__title a {
    text-decoration: none;
}

.post-card__excerpt p,
.post-card__body > p:last-child {
    margin: 0;
    color: rgba(247, 242, 232, 0.72);
}

.single-post,
.page-content,
.archive-header {
    padding: clamp(80px, 10vw, 132px) 0;
}

.entry-header {
    margin-bottom: 36px;
}

.entry-content {
    color: rgba(247, 242, 232, 0.86);
    font-family: var(--font-serif);
    font-size: 23px;
    line-height: 1.6;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
    margin: 0 0 1.25em;
}

.entry-featured-image {
    margin: 0 0 38px;
}

.entry-featured-image img {
    border: 1px solid rgba(202, 164, 95, 0.14);
}

.quote-section {
    position: relative;
    min-height: 120px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(202, 164, 95, 0.13);
    background: #0b0b0a;
}

.quote-landscape {
    position: absolute;
    inset: 0;
    opacity: 0.58;
    background:
        linear-gradient(180deg, rgba(2, 2, 2, 0.12), rgba(2, 2, 2, 0.78)),
        linear-gradient(160deg, transparent 0 52%, rgba(80, 76, 64, 0.48) 52.2% 61%, transparent 61.2%),
        linear-gradient(20deg, transparent 0 46%, rgba(126, 116, 94, 0.5) 46.2% 58%, transparent 58.2%),
        linear-gradient(172deg, transparent 0 60%, rgba(66, 65, 55, 0.7) 60.2% 72%, transparent 72.2%),
        #171815;
    transform: scale(1.06);
}

.quote-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 22px 0;
    text-align: center;
}

.quote-inner blockquote {
    margin: 0;
    color: var(--gold-bright);
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.25;
}

.quote-inner blockquote::before {
    content: "“";
    color: var(--gold);
    font-size: 42px;
    line-height: 0;
}

.quote-inner blockquote::after {
    content: "”";
    color: var(--gold);
    font-size: 42px;
    line-height: 0;
    margin-left: 4px;
    vertical-align: -0.18em;
}

.signature {
    margin: 10px 0 0;
    color: var(--gold-bright);
    font-family: var(--font-serif);
    font-size: 21px;
    font-style: italic;
}

.contact-section {
    background:
        linear-gradient(90deg, rgba(202, 164, 95, 0.06), transparent 32%, rgba(18, 107, 130, 0.07)),
        #080808;
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
}

.contact-inner h2 {
    max-width: 780px;
}

.site-footer {
    padding: 0;
    color: rgba(247, 242, 232, 0.66);
    background: #020202;
}

.site-footer__inner {
    min-height: 56px;
}

.site-footer p {
    margin: 0;
    font-size: 13px;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.social-links a {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: rgba(247, 242, 232, 0.8);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition: color 220ms ease, transform 220ms ease;
}

.social-links a:hover {
    color: var(--gold-bright);
    transform: translateY(-2px);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}

@keyframes sheen {
    0%,
    55% {
        transform: translateX(-120%) skewX(-14deg);
    }
    75%,
    100% {
        transform: translateX(260%) skewX(-14deg);
    }
}

@keyframes cardSheen {
    from {
        transform: translateX(-90%);
    }
    to {
        transform: translateX(90%);
    }
}

@keyframes portraitBreath {
    0%,
    100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.082);
    }
}

@keyframes headerLine {
    0%,
    100% {
        transform: scaleX(0.15);
        opacity: 0.4;
    }
    50% {
        transform: scaleX(1);
        opacity: 0.85;
    }
}

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr);
        min-height: clamp(520px, 55vw, 620px);
    }

    .hero-copy {
        max-width: 465px;
        padding-bottom: clamp(64px, 8vw, 98px);
    }

    .hero-portrait-wrap {
        grid-template-columns: minmax(0, 1fr);
        min-height: 560px;
        margin-inline: calc((100vw - var(--shell)) / -2);
    }

    .portrait-frame {
        height: 620px;
        min-height: 520px;
    }

    .artifact-column {
        display: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .venture-grid,
    .post-list--luxury {
        grid-template-columns: 1fr;
    }

    .venture-timeline::before {
        left: 64px;
    }

    .history-card {
        grid-template-columns: 188px minmax(0, 1fr);
    }

    .history-logo-wrap {
        width: 180px;
        height: 168px;
        margin-left: -4px;
    }

    .history-logo-wrap img {
        width: 168px;
        height: 168px;
    }

    .history-logo-wrap--large img {
        width: 168px;
        height: 168px;
    }
}

@media (max-width: 820px) {
    :root {
        --shell: min(100vw - 30px, 1160px);
        --shell-narrow: min(100vw - 30px, 780px);
    }

    .site-header__inner {
        min-height: 68px;
    }

    .menu-toggle {
        display: inline-block;
        order: 3;
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        padding: 16px 24px 24px;
        border-bottom: 1px solid rgba(202, 164, 95, 0.18);
        background: rgba(2, 2, 2, 0.96);
    }

    .site-header.is-open .site-nav {
        display: block;
    }

    .site-header.is-open .menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.is-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .site-nav a {
        padding: 12px 0;
    }

    .hero-section {
        min-height: 680px;
        background:
            linear-gradient(90deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.94) 31%, rgba(2, 2, 2, 0.58) 54%, rgba(2, 2, 2, 0.14) 72%, rgba(2, 2, 2, 0.42) 100%),
            linear-gradient(0deg, rgba(2, 2, 2, 0.48), rgba(2, 2, 2, 0.04) 46%),
            url("../img/reeghannyce-hero-banner.png") 63% center / auto 100% no-repeat,
            #050505;
    }

    .hero-layout {
        min-height: 680px;
    }

    h1 {
        font-size: clamp(56px, 16vw, 76px);
    }

    h2 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .hero-copy {
        max-width: min(78vw, 420px);
        padding-top: 72px;
        padding-bottom: 62px;
    }

    .hero-intro {
        max-width: min(70vw, 350px);
    }

    .hero-portrait-wrap {
        min-height: 470px;
    }

    .portrait-frame {
        height: 500px;
        min-height: 460px;
    }

    .portrait-frame img {
        object-position: 52% 28%;
    }

    .credential-panel {
        padding: 26px 22px;
    }

    .credential-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-inner,
    .site-footer__inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .post-card {
        grid-template-columns: 1fr;
    }

    .venture-history-hero {
        padding-top: 92px;
    }

    .venture-timeline::before {
        display: none;
    }

    .history-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .history-logo-wrap {
        width: 170px;
        height: 160px;
        margin-left: 0;
    }

    .history-logo-wrap img {
        width: 154px;
        height: 154px;
    }

    .history-card h2 {
        font-size: clamp(28px, 8vw, 36px);
    }
}

@media (max-width: 520px) {
    body {
        font-size: 15px;
    }

    .site-header__inner {
        gap: 12px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 260px;
    }

    .luxury-button {
        width: 100%;
    }

    .hero-portrait-wrap {
        margin-top: 4px;
        min-height: 398px;
    }

    .hero-section,
    .hero-layout {
        min-height: 720px;
    }

    .hero-section {
        background:
            linear-gradient(90deg, rgba(2, 2, 2, 0.99) 0%, rgba(2, 2, 2, 0.96) 30%, rgba(2, 2, 2, 0.68) 51%, rgba(2, 2, 2, 0.18) 72%, rgba(2, 2, 2, 0.38) 100%),
            linear-gradient(0deg, rgba(2, 2, 2, 0.6), rgba(2, 2, 2, 0.04) 50%),
            url("../img/reeghannyce-hero-banner.png") 63% center / auto 100% no-repeat,
            #050505;
    }

    .hero-copy {
        max-width: min(74vw, 330px);
        padding-top: 84px;
        padding-bottom: 54px;
    }

    .hero-copy .eyebrow {
        max-width: 300px;
        font-size: 11px;
        line-height: 1.65;
    }

    .hero-copy h1 {
        font-size: clamp(54px, 15.5vw, 70px);
    }

    .hero-intro {
        max-width: min(69vw, 310px);
        font-size: 15px;
    }

    .portrait-frame {
        height: 430px;
        min-height: 398px;
    }

    .section-band {
        padding: 68px 0;
    }

    .venture-card {
        padding: 30px 22px;
    }

    .history-card {
        padding: 24px 18px;
    }

    .history-role {
        line-height: 1.45;
    }
}
