:root {
    --bg: #070907;
    --bg-soft: #0d100c;
    --panel: rgba(14, 17, 13, 0.78);
    --panel-solid: #11150f;
    --text: #f4f3eb;
    --muted: #a9ad9f;
    --line: rgba(255, 255, 255, 0.12);
    --green: #93d821;
    --green-bright: #b8ff35;
    --gold: #c69b45;
    --danger: #ff8f82;
    --success: #a8ea68;
    --header-height: 92px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --ease-sharp: cubic-bezier(.76, 0, .24, 1);
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

html.js,
html.js body {
    overflow: hidden;
}

body {
    position: relative;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

::selection {
    color: #080a07;
    background: var(--green-bright);
}

.skip-link {
    position: fixed;
    z-index: 500;
    top: 10px;
    left: 10px;
    padding: 12px 16px;
    color: #080a07;
    background: var(--green-bright);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

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

.noise {
    position: fixed;
    z-index: 80;
    inset: 0;
    pointer-events: none;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

#atmosphere {
    position: fixed;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .5;
}

.cursor {
    position: fixed;
    /* Blijf boven modale overlays, waaronder de 18+-bevestiging. */
    z-index: 2000;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.cursor--dot {
    width: 5px;
    height: 5px;
    background: var(--green-bright);
}

.cursor--ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(184, 255, 53, .65);
    transition: width .25s var(--ease), height .25s var(--ease), border-color .25s ease, background .25s ease;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor textarea {
    cursor: none;
}

body.cursor-hover .cursor--ring {
    width: 54px;
    height: 54px;
    border-color: rgba(184, 255, 53, .9);
    background: rgba(147, 216, 33, .08);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: calc(var(--header-height) + var(--safe-top));
    padding: calc(22px + var(--safe-top)) clamp(24px, 4.2vw, 72px) 18px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(5, 7, 5, .88), rgba(5, 7, 5, .28) 72%, transparent);
    backdrop-filter: blur(12px);
}

.brand {
    width: max-content;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    border: 0;
    background: transparent;
    text-align: left;
}

.brand__monogram {
    position: relative;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(147, 216, 33, .52);
    color: var(--green-bright);
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -2px;
    transform: rotate(45deg);
}

.brand__monogram::after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(198, 155, 69, .35);
}

.brand__monogram::first-letter {
    letter-spacing: 0;
}

.brand__monogram {
    text-indent: -1px;
}

.brand__monogram::before {
    content: "";
}

.brand__text {
    display: grid;
    gap: 3px;
}

.brand__text strong {
    font-size: 17px;
    line-height: 1;
    letter-spacing: -.02em;
}

.brand__text strong span {
    color: var(--green);
}

.brand__text small {
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .24em;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3.2vw, 48px);
}

.top-nav button {
    position: relative;
    padding: 9px 0;
    border: 0;
    color: rgba(255, 255, 255, .54);
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: color .3s ease;
}

.top-nav button span {
    margin-right: 7px;
    color: rgba(147, 216, 33, .58);
    font-family: Georgia, serif;
    font-size: 10px;
}

.top-nav button::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--green-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease);
}

.top-nav button:is(:hover, .is-active) {
    color: var(--text);
}

.top-nav button.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-status {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .62);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.pulse {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 12px rgba(184, 255, 53, .8);
}

.pulse::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(184, 255, 53, .55);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { opacity: .8; transform: scale(.6); }
    100% { opacity: 0; transform: scale(1.5); }
}

.viewport,
.track,
.slide {
    width: 100%;
    height: 100vh;
    height: 100dvh;
}

.viewport {
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.track {
    will-change: transform;
    transition: transform 1.05s var(--ease-sharp);
}

.slide {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.slide__scroll {
    position: absolute;
    z-index: 10;
    inset: var(--header-height) 0 0;
    overflow: hidden auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(147, 216, 33, .45) transparent;
    overscroll-behavior: contain;
}

.slide__scroll::-webkit-scrollbar {
    width: 5px;
}

.slide__scroll::-webkit-scrollbar-thumb {
    background: rgba(147, 216, 33, .42);
}

.rail {
    position: fixed;
    z-index: 110;
    top: 50%;
    right: clamp(18px, 2.2vw, 38px);
    display: grid;
    gap: 17px;
    transform: translateY(-50%);
}

.rail__line {
    position: absolute;
    top: 11px;
    bottom: 11px;
    left: 50%;
    width: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .12);
    transform: translateX(-50%);
}

.rail__line span {
    display: block;
    width: 100%;
    height: 33.33%;
    background: var(--green-bright);
    box-shadow: 0 0 12px rgba(184, 255, 53, .65);
    transition: transform 1s var(--ease);
}

.rail button {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: rgba(255, 255, 255, .42);
    background: #080a07;
    font-family: Georgia, serif;
    font-size: 9px;
    transition: color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.rail button::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: inherit;
}

.rail button:is(:hover, .is-active) {
    color: var(--green-bright);
    box-shadow: 0 0 0 1px rgba(147, 216, 33, .35);
    transform: scale(1.08);
}

.page-count {
    position: fixed;
    z-index: 110;
    right: clamp(24px, 4.2vw, 72px);
    bottom: calc(28px + var(--safe-bottom));
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .58);
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: .08em;
}

.page-count span:first-child {
    color: var(--text);
    font-size: 22px;
}

.page-count i {
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, .28);
}

.hero-media,
.contact-media {
    position: absolute;
    z-index: -4;
    inset: -5%;
    transform: scale(1.08);
    will-change: transform;
}

.hero-media picture,
.contact-media picture,
.hero-media img,
.contact-media img {
    width: 100%;
    height: 100%;
}

.hero-media img,
.contact-media img {
    object-fit: cover;
    object-position: center 35%;
    filter: saturate(.84) contrast(1.08) brightness(.72);
}

.hero-shade {
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
        radial-gradient(circle at 78% 43%, rgba(63, 95, 13, .08), transparent 25%),
        linear-gradient(90deg, rgba(4, 6, 4, .98) 0%, rgba(4, 6, 4, .88) 32%, rgba(4, 6, 4, .32) 67%, rgba(4, 6, 4, .63) 100%),
        linear-gradient(0deg, rgba(4, 6, 4, .94) 0%, transparent 34%, rgba(4, 6, 4, .36) 100%);
}

.hero-orbit {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 75%;
    border: 1px solid rgba(147, 216, 33, .12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit--one {
    width: min(49vw, 760px);
    aspect-ratio: 1;
    animation: rotate 36s linear infinite;
}

.orbit--one::before,
.orbit--two::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 20px var(--green-bright);
}

.orbit--two {
    width: min(36vw, 560px);
    aspect-ratio: 1;
    border-color: rgba(198, 155, 69, .13);
    animation: rotate 22s linear reverse infinite;
}

@keyframes rotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-layout {
    width: min(1500px, calc(100% - clamp(48px, 10vw, 180px)));
    min-height: calc(100dvh - var(--header-height));
    margin: 0 auto;
    padding: 8vh 3vw 10vh 0;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, .72fr);
    align-items: center;
    gap: clamp(20px, 5vw, 90px);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 790px;
}

.kicker,
.eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--green-bright);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.kicker__line {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--green-bright), transparent);
}

.display-title {
    margin: clamp(20px, 3vh, 38px) 0 18px;
    display: grid;
    line-height: .75;
    letter-spacing: -.065em;
}

.display-title__small {
    padding-left: .08em;
    color: rgba(255, 255, 255, .92);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 7.4vw, 126px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -.055em;
}

.display-title__large {
    font-size: clamp(86px, 12.2vw, 210px);
    font-weight: 900;
    letter-spacing: -.085em;
}

.accent {
    color: var(--green-bright);
    text-shadow: 0 0 40px rgba(184, 255, 53, .28);
}

.hero-intro {
    max-width: 660px;
    margin: 0;
    color: rgba(244, 243, 235, .74);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(16px, 1.35vw, 22px);
    line-height: 1.55;
}

.hero-actions {
    margin-top: clamp(28px, 4vh, 50px);
    display: flex;
    align-items: center;
    gap: 24px;
}

.button {
    min-height: 54px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid transparent;
    background: transparent;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: color .35s ease, border-color .35s ease, background .35s ease, transform .35s var(--ease), box-shadow .35s ease;
}

.button svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform .35s var(--ease);
}

.button:hover svg {
    transform: translateX(5px);
}

.button--primary {
    color: #0b0e09;
    background: linear-gradient(115deg, #a7ed31, #83bf1c);
    border-color: rgba(184, 255, 53, .65);
    box-shadow: 0 12px 38px rgba(104, 156, 22, .18);
}

.button--primary:hover {
    background: var(--green-bright);
    box-shadow: 0 16px 45px rgba(147, 216, 33, .26);
}

.button--ghost {
    border-color: rgba(255, 255, 255, .18);
    color: var(--text);
}

.button--ghost:hover {
    border-color: rgba(184, 255, 53, .55);
}

.button--text {
    min-height: auto;
    padding: 12px 0;
    color: rgba(255, 255, 255, .68);
    border-bottom-color: rgba(255, 255, 255, .18);
}

.button--text:hover {
    color: var(--green-bright);
    border-bottom-color: var(--green-bright);
}

.hero-meta {
    max-width: 720px;
    margin-top: clamp(34px, 6vh, 72px);
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-meta div {
    display: grid;
    gap: 5px;
}

.hero-meta small {
    color: rgba(255, 255, 255, .38);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-meta strong {
    font-family: Georgia, serif;
    font-size: 12px;
    font-weight: 400;
}

.hero-emblem {
    position: relative;
    justify-self: end;
    width: min(38vw, 560px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    will-change: transform;
}

.hero-emblem img {
    position: relative;
    z-index: 2;
    width: 87%;
    border-radius: 50%;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, .62));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(-5px); }
    50% { transform: translateY(11px); }
}

.hero-emblem__halo {
    position: absolute;
    inset: 8%;
    border: 1px solid rgba(147, 216, 33, .22);
    border-radius: 50%;
    box-shadow: inset 0 0 70px rgba(147, 216, 33, .06), 0 0 80px rgba(147, 216, 33, .08);
    animation: halo 4.5s ease-in-out infinite;
}

@keyframes halo {
    50% { transform: scale(1.045); opacity: .6; }
}

.hero-emblem__tag {
    position: absolute;
    z-index: 3;
    right: 4%;
    bottom: 18%;
    padding: 9px 13px;
    color: #0c0f08;
    background: var(--green-bright);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .2em;
    transform: rotate(-5deg);
}

.scroll-cue {
    position: absolute;
    z-index: 12;
    bottom: 28px;
    left: clamp(24px, 4.2vw, 72px);
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 0;
    color: rgba(255, 255, 255, .42);
    background: transparent;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    width: 54px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .14);
}

.scroll-cue i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--green-bright);
    animation: scrollCue 2.2s var(--ease) infinite;
}

@keyframes scrollCue {
    0% { transform: translateX(-110%); }
    60%, 100% { transform: translateX(110%); }
}

.slide--story {
    background:
        radial-gradient(circle at 22% 36%, rgba(82, 119, 17, .12), transparent 24%),
        radial-gradient(circle at 78% 70%, rgba(198, 155, 69, .08), transparent 20%),
        linear-gradient(135deg, #090b08, #11150f 50%, #070907);
}

.story-grid {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .19;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(circle at center, black, transparent 85%);
}

.story-layout {
    width: min(1500px, calc(100% - clamp(48px, 11vw, 190px)));
    min-height: calc(100dvh - var(--header-height));
    margin: 0 auto;
    padding: clamp(52px, 7vh, 90px) 2vw clamp(80px, 10vh, 120px) 0;
}

.section-heading {
    display: grid;
    grid-template-columns: .9fr 1.4fr 1fr;
    align-items: end;
    gap: clamp(26px, 5vw, 76px);
}

.section-heading h2,
.contact-copy h2,
.drawer__panel h2 {
    margin: 0;
    font-size: clamp(42px, 5.5vw, 90px);
    line-height: .92;
    letter-spacing: -.055em;
}

.section-heading h2 em,
.contact-copy h2 em {
    color: var(--green-bright);
    font-family: Georgia, serif;
    font-weight: 400;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.62;
}

.story-stage {
    margin-top: clamp(38px, 6vh, 70px);
    display: grid;
    grid-template-columns: 1.35fr .92fr .85fr;
    gap: clamp(14px, 1.8vw, 28px);
}

.feature {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    background: rgba(11, 14, 10, .72);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    transform-style: preserve-3d;
    transition: border-color .4s ease, box-shadow .4s ease;
}

.feature:hover {
    border-color: rgba(147, 216, 33, .38);
    box-shadow: 0 30px 85px rgba(0, 0, 0, .42);
}

.feature__media {
    position: absolute;
    inset: 0;
}

.feature__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 6, 4, .98) 0%, rgba(4, 6, 4, .48) 46%, transparent 78%);
}

.feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.75) saturate(.85);
    transition: transform 1.1s var(--ease), filter .8s ease;
}

.feature:hover .feature__media img {
    transform: scale(1.055);
    filter: brightness(.88) saturate(1);
}

.feature__content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(22px, 2.8vw, 38px);
    transform: translateZ(24px);
}

.feature__content > span {
    color: var(--green-bright);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .19em;
}

.feature__content h3 {
    margin: 10px 0 8px;
    font-family: Georgia, serif;
    font-size: clamp(23px, 2.2vw, 36px);
    font-weight: 400;
}

.feature__content p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.55;
}

.feature--large {
    min-height: 430px;
}

.feature--large .feature__media img {
    object-position: center 44%;
}

.feature--dark {
    background:
        radial-gradient(circle at 60% 45%, rgba(147, 216, 33, .12), transparent 35%),
        linear-gradient(145deg, #161b12, #090b08);
}

.feature--dark .feature__content {
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature__index {
    position: absolute;
    top: 22px;
    right: 25px;
    color: rgba(255, 255, 255, .08);
    font-family: Georgia, serif;
    font-size: clamp(80px, 8vw, 132px);
    line-height: 1;
}

.text-link {
    margin-top: 17px;
    padding: 0 0 5px;
    border: 0;
    border-bottom: 1px solid rgba(184, 255, 53, .38);
    color: var(--text);
    background: transparent;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.text-link span {
    color: var(--green-bright);
}

.mini-map {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: 22px;
    opacity: .7;
    background:
        linear-gradient(29deg, transparent 48%, rgba(147, 216, 33, .12) 49%, rgba(147, 216, 33, .12) 51%, transparent 52%),
        linear-gradient(-26deg, transparent 48%, rgba(147, 216, 33, .09) 49%, rgba(147, 216, 33, .09) 51%, transparent 52%);
    background-size: 48px 48px;
    clip-path: polygon(8% 20%, 25% 7%, 42% 14%, 57% 2%, 72% 17%, 93% 11%, 88% 40%, 98% 64%, 79% 74%, 68% 96%, 47% 82%, 31% 92%, 20% 71%, 4% 64%);
    border: 1px solid rgba(147, 216, 33, .25);
}

.mini-map span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 16px var(--green-bright);
    animation: mapPoint 2.2s ease-in-out infinite alternate;
}

.mini-map span:nth-child(2n) {
    animation-delay: -.8s;
}

@keyframes mapPoint {
    to { opacity: .35; transform: scale(.65); }
}

.pillars {
    margin-top: clamp(24px, 4vh, 44px);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pillars span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .025);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-media {
    left: 48%;
}

.contact-media img {
    object-position: 54% center;
    filter: grayscale(.15) saturate(.7) contrast(1.14) brightness(.55);
}

.contact-shade {
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 7, 5, .98) 0%, rgba(5, 7, 5, .93) 42%, rgba(5, 7, 5, .7) 70%, rgba(5, 7, 5, .82) 100%),
        linear-gradient(0deg, rgba(5, 7, 5, .92), transparent 45%);
}

.contact-layout {
    width: min(1420px, calc(100% - clamp(48px, 11vw, 190px)));
    min-height: calc(100dvh - var(--header-height));
    margin: 0 auto;
    padding: clamp(52px, 8vh, 90px) 3vw clamp(90px, 12vh, 130px) 0;
    display: grid;
    grid-template-columns: .82fr 1.12fr;
    align-items: center;
    gap: clamp(38px, 8vw, 130px);
}

.contact-copy {
    max-width: 560px;
}

.contact-copy h2 {
    margin: 20px 0 27px;
    font-size: clamp(56px, 7.3vw, 122px);
}

.contact-copy > p {
    color: rgba(255, 255, 255, .68);
    font-family: Georgia, serif;
    font-size: clamp(15px, 1.35vw, 20px);
    line-height: 1.6;
}

.contact-details {
    margin: clamp(30px, 5vh, 55px) 0 0;
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.contact-details div {
    padding: 14px 0;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-details dt {
    color: rgba(255, 255, 255, .35);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.contact-details dd {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-family: Georgia, serif;
    font-size: 12px;
}

.contact-details a:hover {
    color: var(--green-bright);
}

.contact-note {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 16px;
}

.contact-note span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(147, 216, 33, .42);
    border-radius: 50%;
    color: var(--green-bright);
    font-size: 10px;
    font-weight: 900;
}

.contact-note p {
    margin: 0;
    color: rgba(255, 255, 255, .38);
    font-size: 9px;
    line-height: 1.5;
}

.contact-card {
    position: relative;
    padding: clamp(24px, 3vw, 44px);
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(135deg, rgba(14, 18, 12, .93), rgba(7, 9, 7, .88));
    box-shadow: 0 40px 120px rgba(0, 0, 0, .46);
    backdrop-filter: blur(20px);
}

.contact-card::before,
.contact-card::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    pointer-events: none;
}

.contact-card::before {
    top: -1px;
    left: -1px;
    border-top: 1px solid var(--green-bright);
    border-left: 1px solid var(--green-bright);
}

.contact-card::after {
    right: -1px;
    bottom: -1px;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.contact-card__top {
    margin-bottom: 28px;
    padding-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-card__top div {
    display: grid;
    gap: 5px;
}

.contact-card__top div span,
.live-dot {
    color: rgba(255, 255, 255, .38);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.contact-card__top strong {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 400;
}

.live-dot {
    position: relative;
    padding-left: 14px;
    color: var(--green-bright);
}

.live-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
    transform: translateY(-50%);
}

.contact-form {
    display: grid;
    gap: 19px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: grid;
    gap: 8px;
}

.field > span {
    color: rgba(255, 255, 255, .48);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    border-radius: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-family: Georgia, serif;
    font-size: 13px;
    transition: border-color .3s ease, background .3s ease;
}

.field textarea {
    min-height: 92px;
    resize: vertical;
}

.field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--green-bright) 50%), linear-gradient(135deg, var(--green-bright) 50%, transparent 50%);
    background-position: calc(100% - 13px) 50%, calc(100% - 8px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.field select option {
    color: var(--text);
    background: #10140e;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, .22);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green-bright);
    background: linear-gradient(0deg, rgba(147, 216, 33, .035), transparent);
}

.form-submit {
    padding-top: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.form-submit p {
    max-width: 210px;
    margin: 0;
    color: rgba(255, 255, 255, .28);
    font-size: 8px;
    line-height: 1.5;
}

.form-message {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 11px;
    line-height: 1.5;
}

.form-message strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.form-message p,
.form-message ul {
    margin: 0;
}

.form-message ul {
    padding-left: 17px;
}

.form-message--success {
    color: var(--success);
    border-color: rgba(168, 234, 104, .28);
    background: rgba(168, 234, 104, .05);
}

.form-message--error {
    color: var(--danger);
    border-color: rgba(255, 143, 130, .28);
    background: rgba(255, 143, 130, .05);
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.site-footer {
    position: absolute;
    z-index: 12;
    right: clamp(24px, 4.2vw, 72px);
    bottom: calc(25px + var(--safe-bottom));
    left: clamp(24px, 4.2vw, 72px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, .3);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer div {
    display: flex;
    gap: 22px;
}

.site-footer a:hover {
    color: var(--green-bright);
}

.drawer {
    position: fixed;
    z-index: 400;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
}

.drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.drawer__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(2, 3, 2, .78);
    opacity: 0;
    backdrop-filter: blur(9px);
    transition: opacity .5s ease;
}

.drawer.is-open .drawer__backdrop {
    opacity: 1;
}

.drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(620px, 92vw);
    padding: clamp(46px, 7vw, 90px);
    overflow: auto;
    border-left: 1px solid rgba(147, 216, 33, .2);
    background:
        radial-gradient(circle at 80% 10%, rgba(147, 216, 33, .12), transparent 27%),
        #0b0e0a;
    box-shadow: -40px 0 120px rgba(0, 0, 0, .45);
    transform: translateX(102%);
    transition: transform .8s var(--ease);
}

.drawer.is-open .drawer__panel {
    transform: translateX(0);
}

.drawer__close {
    position: absolute;
    top: 25px;
    right: 28px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: transparent;
    font-family: Georgia, serif;
    font-size: 24px;
}

.drawer__panel h2 {
    margin: 26px 0;
    font-family: Georgia, serif;
    font-weight: 400;
}

.drawer__panel > p {
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.65;
}

.drawer__criteria {
    margin: 38px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.drawer__criteria div {
    padding: 17px 0;
    display: grid;
    grid-template-columns: 35px 120px 1fr;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.drawer__criteria span {
    color: var(--green-bright);
    font-family: Georgia, serif;
}

.drawer__criteria strong {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.drawer__criteria small {
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
}

.age-gate {
    position: fixed;
    z-index: 1000;
    inset: 0;
    padding: 24px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 25%, rgba(147, 216, 33, .12), transparent 30%),
        rgba(4, 6, 4, .96);
    backdrop-filter: blur(18px);
}

.age-gate[hidden] {
    display: none;
}

.age-gate__panel {
    width: min(570px, 100%);
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid rgba(255, 255, 255, .13);
    background: linear-gradient(145deg, rgba(20, 25, 17, .95), rgba(7, 9, 7, .96));
    box-shadow: 0 35px 120px rgba(0, 0, 0, .55);
    text-align: center;
}

.age-gate__panel .eyebrow {
    justify-content: center;
}

.age-gate__mark {
    width: 80px;
    height: 80px;
    margin: 30px auto;
    display: grid;
    place-items: center;
    border: 1px solid var(--green);
    color: var(--green-bright);
    font-family: Georgia, serif;
    font-size: 24px;
    transform: rotate(45deg);
}

.age-gate__mark::first-line {
    transform: rotate(-45deg);
}

.age-gate h1 {
    margin: 0 0 16px;
    font-family: Georgia, serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
}

.age-gate p {
    max-width: 430px;
    margin: 0 auto;
    color: var(--muted);
    font-family: Georgia, serif;
    line-height: 1.6;
}

.age-gate__actions {
    margin: 30px 0 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.age-gate small {
    color: rgba(255, 255, 255, .3);
    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.slide.is-active .reveal {
    opacity: 1;
    transform: translateY(0);
}

.slide.is-active .reveal:nth-child(2) { transition-delay: .08s; }
.slide.is-active .reveal:nth-child(3) { transition-delay: .16s; }
.slide.is-active .reveal:nth-child(4) { transition-delay: .24s; }
.slide.is-active .reveal:nth-child(5) { transition-delay: .32s; }

.no-js .reveal {
    opacity: 1;
    transform: none;
}

.noscript {
    position: fixed;
    z-index: 2000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 16px;
    color: #111;
    background: var(--green-bright);
    text-align: center;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .section-heading {
        grid-template-columns: .7fr 1.35fr;
    }

    .section-heading p {
        grid-column: 2;
    }

    .story-stage {
        grid-template-columns: 1.25fr 1fr;
    }

    .feature--dark {
        grid-column: 1 / -1;
        min-height: 270px;
    }

    .mini-map {
        max-width: 500px;
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 78px;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        padding-right: 24px;
        padding-left: 24px;
    }

    .top-nav {
        display: none;
    }

    .header-status {
        grid-column: 2;
    }

    .hero-layout {
        width: calc(100% - 48px);
        padding-top: 7vh;
        grid-template-columns: 1fr;
    }

    .hero-emblem {
        position: absolute;
        z-index: -1;
        top: 13%;
        right: -10vw;
        width: min(58vw, 560px);
        opacity: .4;
    }

    .hero-copy {
        max-width: 720px;
    }

    .display-title__small {
        font-size: clamp(48px, 11vw, 90px);
    }

    .display-title__large {
        font-size: clamp(84px, 18vw, 160px);
    }

    .story-layout,
    .contact-layout {
        width: calc(100% - 64px);
    }

    .contact-layout {
        padding-right: 32px;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 44px;
    }

    .contact-copy {
        max-width: 720px;
    }

    .contact-card {
        max-width: 760px;
    }

    .contact-media {
        left: 18%;
        opacity: .35;
    }

    .site-footer {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        margin: -55px 32px 28px;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 70px;
    }

    .site-header {
        padding-top: calc(15px + var(--safe-top));
        padding-bottom: 12px;
    }

    .brand__monogram {
        width: 36px;
        height: 36px;
    }

    .brand__text strong {
        font-size: 14px;
    }

    .brand__text small {
        display: none;
    }

    .header-status span:last-child {
        display: none;
    }

    .rail {
        right: 6px;
    }

    .rail button {
        width: 28px;
        height: 28px;
    }

    .page-count {
        right: 24px;
        bottom: 16px;
    }

    .hero-layout {
        width: calc(100% - 42px);
        padding: 6vh 25px 12vh 0;
        align-items: center;
    }

    .kicker {
        max-width: 250px;
        line-height: 1.5;
    }

    .display-title {
        margin-top: 24px;
    }

    .display-title__small {
        font-size: clamp(42px, 14vw, 72px);
    }

    .display-title__large {
        font-size: clamp(72px, 23vw, 122px);
    }

    .hero-intro {
        max-width: 94%;
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-meta {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-meta div {
        grid-template-columns: 120px 1fr;
    }

    .hero-emblem {
        top: 18%;
        right: -26vw;
        width: 84vw;
        opacity: .22;
    }

    .scroll-cue {
        display: none;
    }

    .story-layout,
    .contact-layout {
        width: calc(100% - 42px);
        padding-right: 24px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-heading p {
        grid-column: auto;
    }

    .story-stage {
        grid-template-columns: 1fr;
    }

    .feature,
    .feature--large,
    .feature--dark {
        grid-column: auto;
        min-height: 330px;
    }

    .contact-copy h2 {
        font-size: clamp(58px, 18vw, 90px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .form-submit p {
        max-width: none;
    }

    .contact-details div {
        grid-template-columns: 105px 1fr;
    }

    .site-footer {
        margin-right: 24px;
        margin-left: 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .age-gate__actions {
        flex-direction: column;
    }

    .age-gate__actions .button {
        width: 100%;
    }

    .drawer__panel {
        padding: 65px 28px 40px;
    }

    .drawer__criteria div {
        grid-template-columns: 30px 1fr;
    }

    .drawer__criteria small {
        grid-column: 2;
    }
}

@media (max-height: 760px) and (min-width: 721px) {
    .hero-layout {
        padding-top: 4vh;
        padding-bottom: 8vh;
    }

    .display-title__small {
        font-size: clamp(46px, 6.2vw, 95px);
    }

    .display-title__large {
        font-size: clamp(78px, 10vw, 160px);
    }

    .hero-meta {
        margin-top: 30px;
    }

    .story-layout,
    .contact-layout {
        padding-top: 36px;
        padding-bottom: 74px;
    }

    .feature,
    .feature--large {
        min-height: 330px;
    }
}

@media (hover: none), (pointer: coarse) {
    .cursor {
        display: none;
    }
}

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

    .track {
        transition: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
