:root {
    --bg: #060507;
    --bg2: #0d0a0d;
    --panel: #121014;
    --panel2: #171219;
    --ink: #f7f2ef;
    --muted: #b9afb4;
    --gold: #cba85f;
    --gold2: #edd18f;
    --pink: #f0449a;
    --pink2: #ff86c3;
    --pearl: #f5efec;
    --line: rgba(203, 168, 95, 0.22);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
    --max: 1320px;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.65;
    overflow-x: hidden;
}
a {
    color: inherit;
}
.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    background: #fff;
    color: #111;
    padding: 0.8rem 1rem;
    z-index: 999;
}
.skip-link:focus {
    top: 1rem;
}
.collection-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    min-height: 82px;
    padding: 0 max(4vw, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(180deg, rgba(6, 5, 7, 0.96), rgba(6, 5, 7, 0.72));
    border-bottom: 1px solid rgba(203, 168, 95, 0.16);
    backdrop-filter: blur(18px);
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}
.brand-mark {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold2);
    font-family: var(--serif);
    font-size: 0.82rem;
}
.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
}
.brand-copy strong {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--pearl);
}
.brand-copy small {
    margin-top: 0.26rem;
    color: #998c93;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-size: 0.56rem;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.45rem;
}
.nav-links a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.66rem;
    color: #cfc5ca;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold2);
}
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    color: var(--pearl);
    padding: 0.55rem 0.7rem;
}
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 72% 42%, rgba(240, 68, 154, 0.1), transparent 25%),
        radial-gradient(circle at 32% 22%, rgba(203, 168, 95, 0.15), transparent 28%),
        linear-gradient(180deg, #070507, #050405);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: linear-gradient(to bottom, transparent 0, #000 20%, #000 72%, transparent 100%);
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.6;
}
.orb-one {
    width: 36vw;
    height: 36vw;
    right: -14vw;
    top: 8%;
    background: radial-gradient(
        circle at 35% 35%,
        rgba(240, 68, 154, 0.25),
        rgba(240, 68, 154, 0.02) 58%,
        transparent 65%
    );
}
.orb-two {
    width: 28vw;
    height: 28vw;
    left: -10vw;
    bottom: 4%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(203, 168, 95, 0.18),
        rgba(203, 168, 95, 0.01) 62%,
        transparent 68%
    );
}
.hero-shell {
    position: relative;
    z-index: 2;
    width: min(var(--max), 92vw);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
    padding: 9rem 0 6rem;
}
.eyebrow {
    margin: 0 0 1rem;
    color: var(--gold2);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}
.hero h1,
.section h2,
.closing h2 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.05em;
    text-wrap: balance;
}
.hero h1 {
    font-size: clamp(4.2rem, 7.6vw, 8.5rem);
    line-height: 0.87;
    margin: 0;
    max-width: 880px;
}
.hero h1 em,
.section h2 em,
.closing h2 em {
    font-style: italic;
    color: var(--pink2);
    font-weight: 400;
}
.hero-deck {
    max-width: 720px;
    margin: 2rem 0 0;
    color: #cfc4ca;
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    line-height: 1.5;
}
.hero-actions,
.closing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.2rem;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 50px;
    padding: 0.8rem 1.15rem;
    border: 1px solid var(--gold);
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.67rem;
    font-weight: 700;
    transition: 0.25s ease;
}
.button.primary {
    background: var(--gold);
    color: #100c0e;
}
.button.ghost {
    color: var(--gold2);
    background: rgba(0, 0, 0, 0.1);
}
.button.dark {
    background: #0a080a;
    color: var(--gold2);
}
.button:hover {
    transform: translateY(-2px);
    border-color: var(--gold2);
    box-shadow: 0 12px 36px rgba(203, 168, 95, 0.14);
}
.hero-object {
    position: relative;
    width: min(560px, 86vw);
    aspect-ratio: 1;
    margin: auto;
}
.orbit-line {
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(203, 168, 95, 0.26);
    border-radius: 50%;
    box-shadow:
        0 0 80px rgba(203, 168, 95, 0.08),
        inset 0 0 70px rgba(240, 68, 154, 0.05);
}
.orbit-line:before,
.orbit-line:after {
    content: "";
    position: absolute;
    inset: 10%;
    border: 1px dashed rgba(240, 68, 154, 0.15);
    border-radius: 50%;
    transform: rotate(18deg);
}
.orbit-line:after {
    inset: -5%;
    border-color: rgba(255, 255, 255, 0.05);
    transform: rotate(-12deg);
}
.pearl-core {
    position: absolute;
    inset: 31%;
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    background: radial-gradient(circle at 35% 30%, #fff 0, #e5dad8 18%, #c9b4b5 48%, #79666d 75%, #2b2025 100%);
    color: #171014;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.25),
        0 0 65px rgba(240, 68, 154, 0.18),
        0 25px 70px rgba(0, 0, 0, 0.55);
}
.pearl-core span,
.pearl-core small {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}
.pearl-core strong {
    font-family: var(--serif);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1;
    margin: 0.35rem 0;
}
.orbit-node {
    position: absolute;
    width: 112px;
    min-height: 78px;
    padding: 0.75rem;
    border: 1px solid var(--line);
    background: rgba(14, 11, 14, 0.82);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.orbit-node span {
    color: var(--pink2);
    font-family: var(--serif);
    font-size: 1.2rem;
}
.orbit-node strong {
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.node-1 {
    left: 2%;
    top: 42%;
}
.node-2 {
    left: 36%;
    top: 2%;
}
.node-3 {
    right: 0;
    top: 42%;
}
.node-4 {
    left: 38%;
    bottom: 1%;
}
.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #887b82;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    white-space: nowrap;
}
.scroll-cue span {
    color: var(--pink2);
    margin-left: 0.5rem;
}
.section {
    padding: clamp(5.5rem, 9vw, 9rem) 0;
    border-bottom: 1px solid var(--line);
}
.shell {
    width: min(var(--max), 92vw);
    margin: auto;
}
.definition {
    background: linear-gradient(180deg, #080608, #0b080b);
}
.definition-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: start;
}
.section h2 {
    margin: 0;
    font-size: clamp(3.1rem, 5.5vw, 6.3rem);
    line-height: 0.94;
}
.definition-copy {
    padding-top: 2.2rem;
    color: #c7bbc2;
    font-family: var(--serif);
    font-size: 1.16rem;
}
.definition-copy p {
    margin: 0 0 1.4rem;
}
.inscription {
    margin-top: 2rem !important;
    padding: 1.6rem 0 1.6rem 1.5rem;
    border-left: 1px solid var(--pink);
    color: #e6dcdf !important;
}
.inscription strong {
    color: var(--gold2);
    font-weight: 500;
}
.featured {
    background: radial-gradient(circle at 12% 20%, rgba(240, 68, 154, 0.07), transparent 25%), var(--bg);
}
.collection-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: end;
}
.collection-intro .lead {
    margin: 0 0 0.8rem;
    color: var(--gold2);
    font-family: var(--serif);
    font-size: 1.5rem;
}
.collection-intro p:last-child {
    margin: 0;
    color: var(--muted);
}
.collection-question {
    margin: 3.2rem 0 3.2rem;
    padding: 1.4rem 1.5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
}
.collection-question span {
    color: var(--pink2);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.65rem;
}
.collection-question blockquote {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.5vw, 2.3rem);
    line-height: 1.25;
    color: #eee6e9;
}
.exhibit-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.exhibit-card {
    position: relative;
    min-height: 500px;
    padding: 2rem 1.65rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005));
    overflow: hidden;
    transition: 0.3s ease;
}
.exhibit-card:last-child {
    border-right: 0;
}
.exhibit-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(203, 168, 95, 0.1), transparent 30%),
        linear-gradient(180deg, transparent, rgba(240, 68, 154, 0.035));
    opacity: 0.7;
    transition: 0.3s ease;
}
.exhibit-card:hover {
    background: #0d0a0d;
    transform: translateY(-5px);
}
.exhibit-card:hover:before {
    opacity: 1;
}
.card-no,
.card-content,
.card-bottom {
    position: relative;
    z-index: 2;
}
.card-no {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.card-no span {
    font-family: var(--serif);
    color: var(--pink2);
    font-size: 2.8rem;
    line-height: 1;
}
.card-no small {
    color: #8f838a;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.54rem;
}
.card-content {
    margin-top: auto;
    padding-top: 5rem;
}
.card-content .phase {
    color: var(--gold2);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.6rem;
}
.card-content h3 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.6vw, 2.7rem);
    line-height: 0.98;
    margin: 0.65rem 0 1rem;
    font-weight: 500;
}
.card-content .question {
    color: #e6dce0;
    font-family: var(--serif);
    font-size: 1.05rem;
    line-height: 1.4;
}
.card-content .description {
    color: #a99da4;
    font-size: 0.85rem;
}
.card-bottom {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
}
.card-bottom strong {
    max-width: 170px;
    color: #b9adb3;
    font-family: var(--serif);
    font-size: 0.83rem;
    font-weight: 400;
}
.card-bottom span {
    color: var(--gold2);
    font-size: 1.25rem;
}
.map-section {
    background: #f2ece7;
    color: #181315;
}
.centered {
    text-align: center;
}
.centered .eyebrow {
    color: #a77d2f;
}
.centered h2 em {
    color: #c62c77;
}
.centered > p:last-child {
    color: #695f63;
    max-width: 680px;
    margin: 1.2rem auto 0;
}
.system-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(24, 19, 21, 0.18);
    border-bottom: 1px solid rgba(24, 19, 21, 0.18);
}
.map-node {
    border: 0;
    border-right: 1px solid rgba(24, 19, 21, 0.16);
    background: transparent;
    text-align: left;
    padding: 2rem 1.5rem;
    cursor: pointer;
    min-height: 170px;
    transition: 0.22s ease;
}
.map-node:last-child {
    border-right: 0;
}
.map-node:hover,
.map-node.active {
    background: #181315;
    color: #f7f2ef;
}
.map-node span {
    display: block;
    color: #c62c77;
    font-family: var(--serif);
    font-size: 2rem;
}
.map-node small {
    display: block;
    margin-top: 1.8rem;
    color: #a17d39;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.58rem;
}
.map-node strong {
    display: block;
    margin-top: 0.35rem;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
}
.map-node.active small,
.map-node:hover small {
    color: var(--gold2);
}
.map-detail {
    max-width: 780px;
    margin: 2.2rem auto 0;
    text-align: center;
}
.map-detail > span {
    color: #9e702a;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.6rem;
}
.map-detail h3 {
    font-family: var(--serif);
    font-size: 2.3rem;
    margin: 0.45rem 0 0.6rem;
}
.map-detail p {
    color: #6b6165;
}
.text-link {
    display: inline-flex;
    gap: 0.5rem;
    color: #a37122;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.65rem;
}
.hidden {
    display: none !important;
}
.entry-section {
    background: linear-gradient(145deg, #0a0709, #100b10 58%, #080608);
}
.entry-layout {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 4rem;
    align-items: center;
}
.entry-copy > p:last-of-type {
    max-width: 660px;
    color: var(--muted);
}
.entry-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 2rem;
}
.entry-button {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    color: #d7ccd1;
    text-align: left;
    padding: 1rem 1.1rem;
    cursor: pointer;
    transition: 0.22s ease;
}
.entry-button:hover,
.entry-button.active {
    border-color: var(--gold);
    background: rgba(203, 168, 95, 0.08);
    color: var(--gold2);
}
.entry-button small {
    display: block;
    color: #8e8288;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.55rem;
}
.entry-button strong {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
}
.entry-result {
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid var(--line);
    background: radial-gradient(circle at 100% 0%, rgba(240, 68, 154, 0.1), transparent 32%), rgba(255, 255, 255, 0.025);
    box-shadow: var(--shadow);
}
.entry-result small {
    color: #857981;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.entry-result > span {
    display: block;
    margin-top: 0.75rem;
    color: var(--pink2);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
}
.entry-result h3 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.96;
    margin: 0.7rem 0 1.2rem;
    font-weight: 500;
}
.entry-result p {
    color: #b9adb3;
}
.principle {
    background: linear-gradient(180deg, #110c10, #080607);
}
.principle-inner {
    text-align: center;
    max-width: 1020px;
}
.principle-inner h2 {
    font-size: clamp(3.2rem, 6vw, 6.8rem);
    margin: auto;
}
.principle-inner > p:not(.eyebrow) {
    max-width: 780px;
    margin: 1.7rem auto 0;
    color: #bdb1b7;
    font-family: var(--serif);
    font-size: 1.18rem;
}
.principle-flow {
    margin-top: 3rem;
    padding: 1.4rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    color: var(--gold2);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
}
.principle-flow i {
    color: var(--pink);
    font-style: normal;
}
.closing {
    position: relative;
    min-height: 80svh;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    background: #050405;
}
.closing-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 68, 154, 0.14), rgba(203, 168, 95, 0.06) 34%, transparent 66%);
    filter: blur(15px);
}
.closing-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding: 7rem 0;
}
.closing h2 {
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.88;
    margin: 0;
}
.closing-inner > p:not(.eyebrow) {
    max-width: 710px;
    margin: 1.8rem auto 0;
    color: #c4b8be;
    font-family: var(--serif);
    font-size: 1.2rem;
}
.closing-actions {
    justify-content: center;
}
.site-footer {
    min-height: 120px;
    padding: 2rem max(4vw, 24px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid var(--line);
    color: #847981;
    font-size: 0.72rem;
}
.site-footer div {
    display: flex;
    flex-direction: column;
}
.site-footer strong {
    font-family: var(--serif);
    color: var(--gold2);
    font-size: 1rem;
    font-weight: 500;
}
.site-footer span {
    margin-top: 0.25rem;
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
@media (max-width: 1050px) {
    .hero-shell,
    .definition-grid,
    .collection-header,
    .entry-layout {
        grid-template-columns: 1fr;
    }
    .hero-copy {
        text-align: center;
    }
    .hero-deck {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-object {
        margin-top: 2rem;
    }
    .definition-grid,
    .collection-header,
    .entry-layout {
        gap: 2.4rem;
    }
    .exhibit-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .exhibit-card:nth-child(2) {
        border-right: 0;
    }
    .exhibit-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
    .system-map {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .map-node:nth-child(2) {
        border-right: 0;
    }
    .map-node:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(24, 19, 21, 0.16);
    }
}
@media (max-width: 760px) {
    .collection-nav {
        min-height: 72px;
    }
    .brand-copy strong {
        font-size: 0.78rem;
    }
    .brand-copy small {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #090709;
        border-bottom: 1px solid var(--line);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 1rem max(5vw, 24px);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .hero-shell {
        padding: 7.5rem 0 5rem;
    }
    .hero h1 {
        font-size: clamp(3.6rem, 16vw, 5.4rem);
    }
    .hero-object {
        width: min(440px, 92vw);
    }
    .orbit-node {
        width: 92px;
        min-height: 66px;
        padding: 0.6rem;
    }
    .orbit-node strong {
        font-size: 0.54rem;
    }
    .scroll-cue {
        font-size: 0.5rem;
    }
    .section {
        padding: 5rem 0;
    }
    .collection-question {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .exhibit-rail,
    .system-map,
    .entry-buttons {
        grid-template-columns: 1fr;
    }
    .exhibit-card {
        min-height: 400px;
        border-right: 0 !important;
        border-bottom: 1px solid var(--line);
    }
    .exhibit-card:last-child {
        border-bottom: 0;
    }
    .map-node {
        border-right: 0;
        border-bottom: 1px solid rgba(24, 19, 21, 0.16) !important;
    }
    .site-footer {
        display: block;
        text-align: center;
    }
    .site-footer p {
        margin-top: 1rem;
    }
}
@media (max-width: 520px) {
    .hero-object {
        aspect-ratio: 1/1.08;
    }
    .pearl-core {
        inset: 30%;
    }
    .node-1 {
        left: 0;
    }
    .node-3 {
        right: 0;
    }
    .node-2 {
        left: 36%;
    }
    .node-4 {
        left: 36%;
    }
    .principle-flow {
        display: grid;
        gap: 0.7rem;
    }
    .principle-flow i {
        transform: rotate(90deg);
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
