@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600&family=DM+Mono:wght@400;500&family=Noto+Serif+SC:wght@400;500;600&display=swap');

:root {
    --ink: #0b090a;
    --ink-soft: #121012;
    --paper: #d7cfc5;
    --muted: #90877d;
    --ember: #d66a25;
    --ember-light: #ef9a4c;
    --blue: #2a4164;
    --line: rgba(214, 106, 37, .3);
    --line-blue: rgba(78, 124, 180, .24);
    --shell: min(1240px, calc(100% - 40px));
    --serif: 'Noto Serif SC', Georgia, serif;
    --display: 'Cinzel', Georgia, serif;
    --mono: 'DM Mono', 'Microsoft YaHei', monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    color: var(--paper);
    background: var(--ink);
    font-family: var(--serif);
    overflow-x: hidden;
}

::selection {
    color: #160c06;
    background: var(--ember-light);
}

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

button {
    font: inherit;
    color: inherit;
    cursor: pointer;
}

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

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

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

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .85s ease, transform .85s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 5px 4vw;
    border-bottom: 1px solid rgba(215, 207, 197, .12);
    background: linear-gradient(180deg, rgba(11, 9, 10, .94), rgba(11, 9, 10, .22));
    backdrop-filter: blur(10px);
}

.header-nav {
    display: flex;
    align-items: center;
    min-width: 0;
}

.header-nav-left {
    justify-content: flex-start;
}

.header-nav-right {
    justify-content: flex-end;
    gap: clamp(18px, 2.5vw, 38px);
}

.wordmark-mini,
.wordmark-footer {
    display: block;
    white-space: nowrap;
}

.wordmark-mini {
    justify-self: center;
    width: 190px;
    height: 78px;
}

.wordmark-footer {
    width: 240px;
    height: 100px;
}

.wordmark-mini img,
.wordmark-footer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.2vw, 32px);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.desktop-nav a {
    position: relative;
    color: var(--muted);
    transition: color .25s ease;
}

.desktop-nav a:hover {
    color: var(--paper);
}

.desktop-nav a small {
    display: block;
    margin-top: 4px;
    font-family: var(--serif);
    font-size: 9px;
    letter-spacing: .08em;
    text-align: center;
    color: rgba(215, 207, 197, .62);
}

.nav-cta {
    padding: 11px 15px;
    border: 1px solid var(--line);
    color: var(--ember-light);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
    white-space: nowrap;
    transition: .25s ease;
}

.nav-cta:hover {
    color: var(--paper);
    border-color: var(--ember-light);
    background: rgba(214, 106, 37, .08);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #0b090a url('../materials/16-9/5.jpg') center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgba(5, 5, 7, .78), rgba(8, 7, 9, .12) 42%, rgba(6, 7, 12, .64)), linear-gradient(180deg, rgba(5, 5, 7, .66), transparent 35%, rgba(5, 4, 4, .88));
}

.hero::after {
    content: '';
    position: absolute;
    inset: 3vw;
    z-index: -1;
    border: 1px solid rgba(214, 106, 37, .36);
    box-shadow: 0 0 50px rgba(214, 106, 37, .07), inset 0 0 60px rgba(31, 54, 89, .12);
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse at center, transparent 25%, rgba(0, 0, 0, .33) 70%, rgba(0, 0, 0, .88));
    pointer-events: none;
}

.hero-orbit {
    position: absolute;
    z-index: -1;
    width: 46vw;
    height: 46vw;
    border: 1px solid rgba(224, 123, 48, .2);
    border-radius: 50%;
    filter: blur(.2px);
    transform: rotate(-18deg);
    pointer-events: none;
}

.hero-orbit-one {
    right: -22vw;
    top: -18vw;
    box-shadow: 0 0 70px rgba(214, 106, 37, .14);
}

.hero-orbit-two {
    left: -30vw;
    bottom: -30vw;
    border-color: var(--line-blue);
    box-shadow: 0 0 90px rgba(42, 65, 100, .16);
}

.hero-topline,
.hero-bottomline {
    position: absolute;
    left: 6vw;
    right: 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .15em;
    color: rgba(215, 207, 197, .68);
    text-transform: uppercase;
}

.hero-topline {
    top: 112px;
}

.hero-bottomline {
    bottom: 80px;
}

.hero-center-note {
    position: absolute;
    top: 16.5%;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    color: rgba(239, 154, 76, .86);
    font-family: var(--display);
    font-size: 14px;
    letter-spacing: .16em;
    line-height: 1.45;
    text-align: center;
    text-transform: uppercase;
}

.hero-center-note span {
    display: block;
    color: var(--paper);
    font-size: 12px;
    letter-spacing: .24em;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(850px, 90vw);
    top: 85px;
    margin-top: 155px;
    text-align: center;
    animation: rise-in 1.15s cubic-bezier(.2, .75, .2, 1) both;
}

.eyebrow,
.section-label {
    margin: 0 0 18px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--ember-light);
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    text-shadow: 0 5px 24px rgba(0, 0, 0, .8);
    text-wrap: balance;
}

.hero h1 span {
    display: block;
    font-size: clamp(32px, 4vw, 68px);
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.1;
    text-wrap: balance;
}

.hero h1 em {
    display: block;
    margin-top: 14px;
    font-family: var(--display);
    font-size: clamp(13px, 1.55vw, 20px);
    font-style: normal;
    font-weight: 500;
    letter-spacing: .22em;
    color: var(--ember-light);
    text-wrap: balance;
}

.hero-line {
    margin: 26px 0 30px;
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(215, 207, 197, .86);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 170px;
    padding: 14px 20px;
    border: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: .25s ease;
}

.button-primary {
    background: linear-gradient(110deg, #713415, #c35a1f 48%, #8a401a);
    color: #1c0e07;
    border-color: #e5964c;
    box-shadow: 0 0 22px rgba(214, 106, 37, .2);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 34px rgba(214, 106, 37, .36);
}

.button-quiet {
    color: var(--paper);
    background: rgba(11, 9, 10, .34);
    border-color: rgba(215, 207, 197, .36);
}

.button-quiet:hover {
    border-color: var(--ember-light);
    color: var(--ember-light);
}

.hero-meta {
    display: grid;
    grid-template-columns: auto auto;
    gap: 2px 12px;
    min-width: 250px;
    text-align: left;
}

.hero-meta-right {
    text-align: right;
    grid-template-columns: 1fr;
}

.hero-meta small {
    color: var(--muted);
    font-size: 8px;
    letter-spacing: .12em;
}

.hero-meta strong {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .12em;
    color: var(--paper);
}

.scroll-cue {
    display: grid;
    justify-items: center;
    color: var(--ember-light);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .15em;
}

.trailer {
    width: 100%;
    max-width: none;
    padding: 118px 0 135px;
}

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

.trailer-note {
    width: var(--shell);
    margin: 15px auto 0;
    padding-inline: 0;
}

.section-heading {
    max-width: 560px;
}

.trailer-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: clamp(36px, 8vw, 120px);
    max-width: none;
}

.trailer-heading-aside {
    display: grid;
    justify-items: end;
    gap: 30px;
    max-width: 350px;
}

.trailer-heading-aside .section-lede {
    margin: 0;
}

.section-index {
    color: var(--ember-light);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .16em;
}

.trailer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0e0b0c;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.trailer-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 58px);
    background: linear-gradient(135deg, rgba(11, 9, 10, .98), rgba(17, 11, 11, .88)), url('../materials/16-9/12.jpg') center / cover;
}

.trailer-copy .section-label {
    margin-bottom: 28px;
}

.trailer-copy h2 {
    max-width: 440px;
    font-size: clamp(28px, 2.8vw, 46px);
    line-height: 1.12;
    text-wrap: balance;
}

.trailer-copy .section-lede {
    max-width: 360px;
    margin: 30px 0 0;
    font-size: 14px;
    line-height: 1.85;
}

.trailer-copy-meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 34px;
    border-top: 1px solid rgba(215, 207, 197, .17);
    color: var(--ember-light);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .13em;
}

.section-label span {
    display: inline-block;
    width: 54px;
    height: 1px;
    margin: 0 0 3px 10px;
    background: currentColor;
}

h2 {
    margin: 0;
    font-size: clamp(34px, 5.2vw, 72px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: .02em;
}

h2 em {
    color: var(--ember-light);
    font-style: normal;
}

.section-lede {
    max-width: 410px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.trailer-card {
    position: relative;
    min-height: 430px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-right: 1px solid var(--line);
    background: #0e0b0c;
}

.trailer-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72) contrast(1.06);
}

.video-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 4, 5, .75), transparent 55%), linear-gradient(0deg, rgba(5, 4, 5, .7), transparent 44%);
    pointer-events: none;
}

.video-play {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    border: 1px solid var(--ember-light);
    border-radius: 50%;
    color: var(--ember-light);
    background: rgba(11, 9, 10, .52);
    font-size: 22px;
    transition: .25s ease;
}

.video-play:hover {
    background: var(--ember);
    color: #170b05;
    box-shadow: 0 0 32px rgba(214, 106, 37, .45);
}

.video-play span {
    margin-left: 4px;
}

.video-meta {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .15em;
    color: var(--paper);
}

.video-sound {
    position: absolute;
    right: 22px;
    top: 18px;
    display: flex;
    gap: 7px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--paper);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .12em;
}

.video-sound span {
    color: var(--ember-light);
}

.trailer-note {
    width: var(--shell);
    margin: 15px auto 0;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.trailer-note span {
    color: var(--ember);
}

.thesis {
    padding: 115px 0;
    background: linear-gradient(112deg, #1a0e0c, #100b0d 60%, #101521);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line-blue);
}

.thesis-inner {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr) 100px;
    align-items: start;
    gap: clamp(20px, 2.2vw, 34px);
    width: min(1700px, calc(100% - 64px));
    padding-right: clamp(24px, 3vw, 56px);
}

.thesis-inner>.section-label {
    margin-top: 10px;
}

.thesis-copy {
    max-width: none;
    margin: 0;
    font-size: clamp(24px, 3.4vw, 50px);
    line-height: 1.32;
    letter-spacing: .015em;
    text-wrap: balance;
}

.thesis-stamp {
    display: grid;
    place-items: center;
    width: 116px;
    height: 116px;
    transform: rotate(12deg);
    border: 1px solid var(--ember);
    border-radius: 50%;
    color: var(--ember-light);
    font-family: var(--mono);
    text-align: center;
}

.thesis-stamp span {
    font-size: 8px;
    letter-spacing: .12em;
    line-height: 1.65;
}

.thesis-stamp b {
    margin-top: 3px;
    font-size: 18px;
    font-weight: 400;
}

.story {
    width: 100%;
    padding: 160px 0;
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    width: var(--shell);
    margin-inline: auto;
}

.story-art {
    position: relative;
    min-height: 620px;
    background: linear-gradient(90deg, rgba(11, 9, 10, .2), rgba(11, 9, 10, .02)), url('../materials/16-9/4.jpg') center / cover;
    border: 1px solid var(--line);
    box-shadow: 22px 22px 0 rgba(32, 20, 16, .38);
}

.story-art::before {
    content: 'MEMORY 02 / 12';
    position: absolute;
    top: 20px;
    left: 22px;
    color: var(--ember-light);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .15em;
}

.story-art::after {
    content: 'THE ROOM THAT REMEMBERS';
    position: absolute;
    right: 20px;
    bottom: 22px;
    color: rgba(215, 207, 197, .78);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .16em;
    writing-mode: vertical-rl;
}

.story-copy {
    padding: 30px clamp(24px, 4vw, 72px);
}

.story-copy h2 {
    max-width: 520px;
    font-size: clamp(32px, 4.2vw, 58px);
    text-wrap: balance;
}

.story-copy p:not(.section-label) {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(215, 207, 197, .17);
}

.story-stats div {
    display: grid;
    gap: 6px;
}

.story-stats strong {
    color: var(--paper);
    font-family: var(--display);
    font-size: 26px;
    font-weight: 500;
}

.story-stats span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .1em;
}

.text-link {
    display: inline-flex;
    gap: 12px;
    margin-top: 35px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ember);
    color: var(--ember-light);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.family-section {
    padding: 135px 0 155px;
    background: #100c0d;
    border-top: 1px solid rgba(214, 106, 37, .15);
}

.family-section>.section-shell {
    padding-inline: 0;
}

.family-heading {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    max-width: none;
    margin-bottom: 60px;
    padding-inline: 0;
}

.family-heading h2 {
    grid-column: 1;
    grid-row: 2;
    max-width: 780px;
    font-size: clamp(30px, 4.2vw, 56px);
    line-height: 1.12;
    text-wrap: balance;
}

.family-heading .section-label {
    grid-column: 1;
    grid-row: 1;
}

.family-heading .section-index {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 10px;
}

.family-grid {
    display: grid;
    grid-template-columns: 1.16fr .92fr .92fr;
    gap: 18px;
    align-items: stretch;
}

.family-card {
    position: relative;
    height: clamp(500px, 34vw, 620px);
    overflow: hidden;
    border: 1px solid rgba(214, 106, 37, .24);
    background: #0b090a;
}

.family-card:first-child {
    height: clamp(500px, 34vw, 620px);
}

.family-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72) contrast(1.05);
    transition: transform .7s ease, filter .7s ease;
}

.family-card:hover img {
    transform: scale(1.05);
    filter: saturate(1) contrast(1.08);
}

.family-card-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 76px 22px 22px;
    background: linear-gradient(0deg, rgba(5, 4, 5, .95), transparent);
}

.family-card-overlay small {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .14em;
    color: var(--ember-light);
}

.family-card-overlay h3 {
    margin: 9px 0 3px;
    font-size: 30px;
    font-weight: 500;
}

.family-card-overlay p {
    max-width: 220px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.rules {
    width: 100%;
    padding: 160px 0;
}

.rules-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 0;
    align-items: center;
    width: var(--shell);
    margin-inline: auto;
}

.rules-art {
    min-height: 570px;
    background: url('../materials/16-9/6.jpg') center / cover;
    border: 1px solid var(--line-blue);
    filter: saturate(.74);
}

.rules-copy {
    padding: 30px clamp(24px, 4vw, 72px);
}

.rules-copy h2 {
    max-width: 520px;
    margin-bottom: 55px;
    font-size: clamp(34px, 4.4vw, 60px);
    text-wrap: balance;
}

.rules-lede {
    max-width: 390px;
    margin: -30px 0 32px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.rules-list {
    display: grid;
    gap: 0;
}

.rules-list article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid rgba(215, 207, 197, .17);
}

.rules-list article:last-child {
    border-bottom: 1px solid rgba(215, 207, 197, .17);
}

.rules-list article>span {
    color: var(--ember-light);
    font-family: var(--mono);
    font-size: 12px;
}

.rules-list h3 {
    margin: 0 0 8px;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 500;
    line-height: 1.25;
}

.rules-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.gallery-section {
    padding: 135px 0 155px;
    background: linear-gradient(180deg, #141017, #0a090a);
    border-top: 1px solid var(--line-blue);
}

.gallery-section>.section-shell {
    padding-inline: 0;
}

.gallery-header {
    display: grid;
    grid-template-columns: 1fr minmax(220px, .5fr);
    gap: 30px;
    align-items: end;
    margin-bottom: 42px;
    padding-inline: 0;
}

.gallery-header h2 {
    font-size: clamp(30px, 4vw, 54px);
    text-wrap: balance;
}

.gallery-header h2 em {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .15em;
}

.gallery-lede {
    max-width: 270px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.gallery-stage {
    position: relative;
    overflow: hidden;
}

.gallery-controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    pointer-events: none;
}

.gallery-controls button {
    position: relative;
    width: 74px;
    height: 54px;
    padding: 0 12px;
    border: 0;
    background: rgba(9, 8, 10, .2);
    color: rgba(245, 237, 227, .72);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .2em;
    line-height: 1;
    pointer-events: auto;
    transition: .25s ease;
}

.gallery-controls button::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--ember);
    opacity: .74;
    transition: .25s ease;
}

.gallery-control-prev::before {
    left: 0;
}

.gallery-control-next::before {
    right: 0;
}

.gallery-controls button:hover {
    background: rgba(9, 8, 10, .62);
    color: var(--ember-light);
    letter-spacing: .26em;
}

.gallery-controls button:hover::before {
    box-shadow: 0 0 12px rgba(214, 106, 37, .72);
}

.gallery-track {
    display: flex;
    transition: transform .65s cubic-bezier(.2, .75, .2, 1);
}

.gallery-slide {
    position: relative;
    flex: 0 0 100%;
    margin: 0;
    aspect-ratio: 16 / 8.5;
    overflow: hidden;
    border: 1px solid rgba(214, 106, 37, .25);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.74);
}

.gallery-slide figcaption {
    position: absolute;
    left: 20px;
    bottom: 18px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .15em;
    color: var(--paper);
}

.contact-section {
    position: relative;
    min-height: 690px;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
    background: #0b090a;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: min(70vw, 820px);
    aspect-ratio: 1;
    border: 1px solid rgba(214, 106, 37, .22);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(214, 106, 37, .12), inset 0 0 80px rgba(42, 65, 100, .12);
    transform: rotate(-18deg);
}

.contact-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 6, 8, .94), rgba(8, 6, 8, .18) 55%, rgba(8, 6, 8, .84)), url('../materials/16-9/12.jpg') center / cover;
    filter: saturate(.65);
    opacity: .84;
}

.contact-inner {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
}

.contact-inner h2 {
    font-size: clamp(50px, 7vw, 96px);
}

.contact-inner>p:not(.section-label) {
    margin: 22px 0 30px;
    color: var(--paper);
    font-size: 18px;
}

.placeholder-note {
    margin-top: 15px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .1em;
}

.site-footer {
    width: 100%;
    padding: 70px 0 24px;
    background: #090809;
    border-top: 1px solid var(--line);
}

.site-footer .section-shell {
    width: min(1680px, calc(100% - 96px));
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(0, 1.25fr);
    gap: clamp(80px, 12vw, 220px);
    padding-bottom: 64px;
}

.footer-brand p {
    margin-top: 22px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .15em;
}

.footer-company {
    max-width: 650px;
}

.footer-company strong {
    display: block;
    margin-bottom: 16px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .07em;
    color: var(--paper);
}

.footer-company address {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    line-height: 1.8;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(215, 207, 197, .14);
    color: #6f6964;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .07em;
}

.footer-legal a {
    color: var(--ember-light);
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

@media (max-width: 860px) {
    :root {
        --shell: min(100% - 40px, 680px);
    }

    .site-header {
        display: flex;
        justify-content: center;
        padding: 18px 20px;
    }

    .header-nav {
        display: none;
    }

    .wordmark-mini {
        justify-self: auto;
        width: 104px;
        height: 44px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        position: absolute;
        right: 20px;
        display: grid;
        gap: 6px;
        width: 38px;
        padding: 8px 0 8px 12px;
        border: 0;
        background: transparent;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--ember-light);
        transition: .25s ease;
    }

    .site-header.menu-open .menu-toggle span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .site-header.menu-open .menu-toggle span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 12px 20px 20px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        background: rgba(11, 9, 10, .97);
        transition: .3s ease;
    }

    .site-header.menu-open .mobile-nav {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(215, 207, 197, .12);
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .12em;
        color: var(--paper);
    }

    .hero {
        min-height: 760px;
    }

    .hero::after {
        inset: 16px;
    }

    .hero-topline {
        top: 95px;
        left: 28px;
        right: 28px;
        font-size: 7px;
    }

    .hero-topline span:last-child {
        display: none;
    }

    .hero-center-note {
        top: 16%;
        font-size: 10px;
    }

    .hero-center-note span {
        font-size: 9px;
    }

    .hero-content {
        top: 80px;
        /* margin-top: 70px; */
    }

    .hero h1 span {
        font-size: clamp(28px, 8.5vw, 54px);
        letter-spacing: .06em;
    }

    .hero h1 em {
        font-size: 10px;
        letter-spacing: .12em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: min(240px, 76vw);
    }

    .hero-bottomline {
        bottom: 52px;
        left: 28px;
        right: 28px;
    }

    .hero-meta {
        min-width: auto;
        display: block;
    }

    .hero-meta strong,
    .hero-meta small {
        display: block;
    }

    .hero-meta small {
        margin-top: 4px;
    }

    .hero-meta-right {
        display: none;
    }

    .scroll-cue {
        font-size: 8px;
    }

    .trailer-heading {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .trailer-heading-aside {
        justify-items: start;
        gap: 15px;
    }

    .trailer,
    .story,
    .rules,
    .gallery-section {
        padding: 100px 0;
    }

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

    .trailer-card {
        min-height: 0;
        aspect-ratio: 16 / 10;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trailer-copy {
        min-height: 390px;
        padding: 42px 24px 28px;
    }

    .trailer-copy h2 {
        font-size: clamp(26px, 7vw, 40px);
    }

    .trailer-copy-meta {
        margin-top: 36px;
        padding-top: 24px;
        font-size: 8px;
    }

    .video-meta {
        left: 14px;
        right: 14px;
        bottom: 14px;
        font-size: 7px;
    }

    .video-sound {
        top: 14px;
        right: 14px;
    }

    .thesis {
        padding: 90px 0;
    }

    .thesis-inner {
        grid-template-columns: 1fr;
        gap: 0;
        width: var(--shell);
        padding-right: 0;
    }

    .thesis-inner>.section-label {
        margin-top: 0;
    }

    .thesis-copy {
        margin-top: 25px;
        font-size: 28px;
    }

    .thesis-stamp {
        margin-top: 28px;
        transform: rotate(12deg);
    }

    .story-inner,
    .rules-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-art,
    .rules-art {
        min-height: 460px;
    }

    .story-copy {
        order: -1;
    }

    .story-art {
        order: 0;
    }

    .story-stats {
        gap: 8px;
    }

    .story-stats strong {
        font-size: 22px;
    }

    .story-stats span {
        font-size: 7px;
    }

    .family-section {
        padding: 100px 0;
    }

    .family-heading {
        display: block;
        margin-bottom: 38px;
    }

    .family-heading h2 {
        font-size: clamp(28px, 8vw, 44px);
    }

    .family-heading .section-index {
        display: block;
        margin: 22px 0 0;
    }

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

    .family-card,
    .family-card:first-child {
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .family-card-overlay {
        padding: 50px 10px 12px;
    }

    .family-card-overlay small {
        font-size: 7px;
    }

    .family-card-overlay h3 {
        margin-top: 5px;
        font-size: 20px;
    }

    .family-card-overlay p {
        font-size: 10px;
    }

    .gallery-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 20px;
    }

    .gallery-lede {
        max-width: 250px;
    }

    .gallery-controls {
        padding: 0 10px;
    }

    .gallery-controls button {
        width: 58px;
        height: 48px;
        padding: 0 8px;
        font-size: 8px;
    }

    .gallery-slide {
        aspect-ratio: 4 / 3;
    }

    .contact-section {
        min-height: 590px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .site-footer .section-shell {
        width: calc(100% - 40px);
    }

    .footer-legal {
        display: grid;
        gap: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
