:root {
    --alice-ink: #0b1728;
    --alice-night: #071528;
    --alice-night-soft: #112841;
    --alice-paper: #f4efe5;
    --alice-paper-cool: #edf3f1;
    --alice-blue: #42c7e9;
    --alice-cobalt: #1268a5;
    --alice-pink: #f05a91;
    --alice-yellow: #f1c94c;
    --alice-line: rgba(11, 23, 40, 0.22);
    --alice-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
    --alice-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --alice-frame: min(84vw, 1280px);
    --alice-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: auto;
    scroll-padding-top: 2rem;
}

body.alice-home {
    margin: 0 !important;
    background: var(--alice-night);
    color: var(--alice-ink);
    font-family: var(--alice-sans);
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.alice-home *,
.alice-home *::before,
.alice-home *::after {
    box-sizing: border-box;
}

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

.alice-home a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.24em;
}

.alice-home a:focus-visible {
    outline: 3px solid var(--alice-yellow);
    outline-offset: 5px;
}

.alice-skip {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    padding: 0.8rem 1.1rem;
    background: #fff;
    color: var(--alice-night) !important;
    font-weight: 700;
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

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

.alice-frame {
    position: relative;
    width: var(--alice-frame);
    margin-inline: auto;
}

.alice-story {
    position: relative;
    isolation: isolate;
}

.alice-scene {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

.alice-masthead {
    position: absolute;
    top: 0;
    left: 8vw;
    right: 8vw;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 112px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.alice-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.48rem;
    min-height: 44px;
    color: inherit;
    text-decoration: none !important;
}

.alice-wordmark span {
    font-family: var(--alice-serif);
    font-size: clamp(1.65rem, 2.4vw, 2.3rem);
    font-style: italic;
    line-height: 1;
}

.alice-wordmark i {
    font-family: var(--alice-sans);
    font-size: 0.67rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.alice-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 3vw, 3rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.alice-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: inherit;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
}

.alice-nav a::after {
    width: 0;
    height: 1px;
    margin-left: 0.6rem;
    background: currentColor;
    content: "";
    transition: width 260ms var(--alice-ease);
}

.alice-nav a:hover::after,
.alice-nav a:focus-visible::after {
    width: 1.5rem;
}

.alice-rail {
    position: fixed;
    top: 50%;
    right: 1.25rem;
    z-index: 60;
    display: grid;
    gap: 0.15rem;
    width: 76px;
    transform: translateY(-50%);
    color: #fff;
    mix-blend-mode: difference;
}

.alice-rail__line {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 13px;
    width: 1px;
    background: currentColor;
    opacity: 0.35;
}

.alice-rail a {
    position: relative;
    display: grid;
    grid-template-columns: 27px 1fr;
    align-items: center;
    min-height: 34px;
    text-decoration: none;
    opacity: 0.45;
    transition: opacity 220ms ease;
}

.alice-rail a::before {
    position: absolute;
    left: 9px;
    width: 9px;
    height: 9px;
    background: currentColor;
    border-radius: 50%;
    content: "";
    transform: scale(0.4);
    transition: transform 220ms var(--alice-ease);
}

.alice-rail a span {
    padding-left: 1.8rem;
    font-size: 0.57rem;
    font-variant-numeric: tabular-nums;
}

.alice-rail a b {
    position: absolute;
    right: 72px;
    width: max-content;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    opacity: 0;
    text-transform: uppercase;
    transform: translateX(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.alice-rail a:hover,
.alice-rail a:focus-visible,
.alice-rail a.is-active {
    opacity: 1;
}

.alice-rail a:hover::before,
.alice-rail a:focus-visible::before,
.alice-rail a.is-active::before {
    transform: scale(1);
}

.alice-rail a:hover b,
.alice-rail a:focus-visible b {
    opacity: 1;
    transform: translateX(0);
}

.alice-kicker {
    margin: 0 0 1.45rem;
    color: #fff;
    font-size: clamp(0.67rem, 0.8vw, 0.79rem);
    font-weight: 750;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.alice-kicker--ink {
    color: var(--alice-cobalt);
}

.alice-home h1,
.alice-home h2 {
    margin: 0;
    font-family: var(--alice-serif);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.93;
    text-wrap: balance;
}

.alice-home h1 em,
.alice-home h2 em {
    display: block;
    font-weight: 400;
}

.alice-prose,
.alice-lede {
    max-width: 36rem;
    margin: 0;
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
    line-height: 1.65;
}

.alice-prose--light {
    color: rgba(255, 255, 255, 0.84);
}

.alice-scene-number {
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(11, 23, 40, 0.48);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.alice-scene-number--light {
    color: rgba(255, 255, 255, 0.55);
}

/* Scene 01 — threshold */
.alice-threshold {
    display: grid;
    align-items: end;
    min-height: max(760px, 100svh);
    color: #fff;
    background: var(--alice-night);
}

.alice-threshold__image,
.alice-threshold__veil {
    position: absolute;
    inset: 0;
}

.alice-threshold__image img {
    width: 100%;
    height: 112%;
    object-fit: cover;
    object-position: 50% 48%;
    transform: translate3d(0, calc(var(--alice-hero-drift, 0) * 1px), 0) scale(1.025);
    will-change: transform;
}

.alice-threshold__veil {
    background:
        linear-gradient(90deg, rgba(4, 10, 23, 0.94) 0%, rgba(4, 10, 23, 0.6) 38%, rgba(4, 10, 23, 0.08) 70%),
        linear-gradient(0deg, rgba(4, 10, 23, 0.92) 0%, transparent 43%),
        linear-gradient(180deg, rgba(4, 10, 23, 0.42) 0%, transparent 24%);
}

.alice-threshold__copy {
    z-index: 2;
    padding-bottom: clamp(5rem, 10vh, 8.75rem);
}

.alice-threshold h1 {
    max-width: 11ch;
    color: #fff;
    font-size: clamp(4.2rem, 8.4vw, 9.6rem);
}

.alice-threshold h1 em {
    color: #a8e7f5;
    font-style: italic;
}

.alice-threshold .alice-lede {
    max-width: 33rem;
    margin-top: clamp(1.8rem, 4vh, 3.2rem);
    color: rgba(255, 255, 255, 0.82);
}

.alice-enter {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    min-height: 48px;
    margin-top: 2.2rem;
    color: #fff;
    font-size: 0.73rem;
    font-weight: 750;
    letter-spacing: 0.16em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.alice-enter span:last-child {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    transition: transform 240ms var(--alice-ease), background 240ms ease;
}

.alice-enter:hover span:last-child,
.alice-enter:focus-visible span:last-child {
    background: #fff;
    color: var(--alice-night);
    transform: translateY(4px);
}

.alice-threshold__caption {
    position: absolute;
    right: 6.5vw;
    bottom: 7.5rem;
    z-index: 2;
    margin: 0;
    font-family: var(--alice-serif);
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 0.03em;
    opacity: 0.74;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
}

/* Scene 02 — atmosphere */
.alice-atmosphere {
    display: grid;
    align-items: center;
    min-height: 118svh;
    padding: clamp(8rem, 15vh, 13rem) 0;
    background: var(--alice-paper-cool);
}

.alice-atmosphere__grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.78fr) minmax(28rem, 1.22fr);
    gap: clamp(3rem, 8vw, 9rem);
    align-items: center;
}

.alice-atmosphere .alice-scene-number,
.alice-agency .alice-scene-number,
.alice-invitation .alice-scene-number {
    top: -3.25rem;
}

.alice-atmosphere h2 {
    max-width: 9ch;
    font-size: clamp(3.7rem, 6.6vw, 7.7rem);
}

.alice-atmosphere h2 em {
    color: var(--alice-cobalt);
    font-style: italic;
}

.alice-atmosphere .alice-prose {
    margin-top: 2.4rem;
}

.alice-margin-note {
    max-width: 20rem;
    margin: 4.5rem 0 0 17%;
    padding-left: 1.4rem;
    border-left: 1px solid var(--alice-line);
    font-family: var(--alice-serif);
    font-size: 1.2rem;
    font-style: italic;
}

.alice-image {
    position: relative;
    margin: 0;
}

.alice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alice-image--city {
    height: min(76vw, 780px);
    max-height: 82svh;
    clip-path: polygon(7% 0, 100% 4%, 94% 93%, 18% 100%, 0 58%);
}

.alice-image--city img {
    object-position: 58% 50%;
}

.alice-image--city figcaption {
    position: absolute;
    right: 3rem;
    bottom: 3.5rem;
    max-width: 17rem;
    padding: 0.6rem 0.8rem;
    color: #fff;
    background: rgba(5, 19, 35, 0.82);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.alice-orbit {
    position: absolute;
    width: 46vw;
    height: 46vw;
    border: 1px solid rgba(18, 104, 165, 0.17);
    border-radius: 50%;
    pointer-events: none;
}

.alice-orbit::after {
    position: absolute;
    inset: 14%;
    border: inherit;
    border-radius: inherit;
    content: "";
}

.alice-orbit--one {
    top: -14vw;
    left: -24vw;
}

/* Scene 03 — race */
.alice-race {
    display: grid;
    align-items: center;
    min-height: 112svh;
    padding: clamp(8rem, 15vh, 13rem) 0;
    color: #fff;
    background: var(--alice-night);
}

.alice-race::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 42%, rgba(66, 199, 233, 0.17), transparent 33%);
    content: "";
}

.alice-race__ticker {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: max-content;
    color: rgba(255, 255, 255, 0.04);
    font-family: var(--alice-sans);
    font-size: clamp(7rem, 17vw, 20rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.7;
    white-space: nowrap;
    transform: translateX(-12%);
}

.alice-race__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem clamp(3rem, 8vw, 8rem);
    align-items: end;
}

.alice-race__question {
    z-index: 2;
    padding-top: 5rem;
}

.alice-race h2 {
    max-width: 9ch;
    color: #fff;
    font-size: clamp(4rem, 7.1vw, 8.2rem);
}

.alice-race h2 em {
    color: #7edff1;
    font-style: italic;
}

.alice-race__answer {
    margin: 3rem 0 0;
    color: var(--alice-yellow);
    font-family: var(--alice-serif);
    font-size: clamp(2.1rem, 4vw, 4.7rem);
    line-height: 1;
}

.alice-image--race {
    z-index: 1;
    height: clamp(340px, 44vw, 610px);
    margin-bottom: 7rem;
    transform: rotate(2.2deg);
}

.alice-image--race::before {
    position: absolute;
    inset: -1rem 1rem 1rem -1rem;
    z-index: -1;
    border: 1px solid rgba(126, 223, 241, 0.45);
    content: "";
}

.alice-image--race img {
    object-position: 54% center;
}

.alice-race__aside {
    grid-column: 2;
    max-width: 18rem;
    margin: -3rem 0 0 auto;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.9rem;
}

/* Scene 04 — perspective */
.alice-perspective {
    display: grid;
    align-items: center;
    min-height: 120svh;
    padding: clamp(8rem, 15vh, 14rem) 0;
    background: var(--alice-paper);
}

.alice-perspective__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(3rem, 7vw, 8rem);
    align-items: center;
}

.alice-image--companion {
    height: min(58vw, 680px);
    max-height: 82svh;
    clip-path: polygon(0 5%, 89% 0, 100% 46%, 85% 100%, 8% 94%);
}

.alice-image--companion img {
    object-position: 42% 50%;
}

.alice-perspective h2 {
    max-width: 10ch;
    font-size: clamp(3.7rem, 6.3vw, 7.3rem);
}

.alice-perspective h2 em {
    color: var(--alice-pink);
    font-style: italic;
}

.alice-principles {
    max-width: 39rem;
    margin-top: 3.5rem;
    counter-reset: principles;
}

.alice-principles p {
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    gap: 0.8rem;
    align-items: baseline;
    margin: 0;
    padding: 1rem 0;
    border-top: 1px solid var(--alice-line);
    font-family: var(--alice-serif);
    font-size: clamp(1.1rem, 1.55vw, 1.42rem);
    line-height: 1.35;
    counter-increment: principles;
}

.alice-principles p::before {
    color: var(--alice-cobalt);
    font-family: var(--alice-sans);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    content: "0" counter(principles);
}

/* Scene 05 — invisible skills */
.alice-invisible {
    display: grid;
    align-items: center;
    min-height: 118svh;
    color: #fff;
    background: #170d2c;
}

.alice-invisible__image,
.alice-invisible__wash {
    position: absolute;
    inset: 0;
}

.alice-invisible__image {
    margin: 0;
}

.alice-invisible__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% center;
}

.alice-invisible__wash {
    background:
        linear-gradient(270deg, rgba(12, 6, 28, 0.9) 0%, rgba(12, 6, 28, 0.64) 46%, rgba(12, 6, 28, 0.06) 82%),
        linear-gradient(0deg, rgba(12, 6, 28, 0.6), transparent 48%);
}

.alice-invisible__content {
    z-index: 2;
    padding: clamp(9rem, 16vh, 14rem) 0;
}

.alice-invisible__content > *:not(.alice-scene-number) {
    max-width: 49rem;
    margin-left: auto;
}

.alice-invisible h2 {
    font-size: clamp(3.7rem, 6.8vw, 7.9rem);
    color: #fff;
}

.alice-invisible h2 em {
    color: var(--alice-yellow);
    font-style: italic;
}

.alice-invisible .alice-prose {
    margin-top: 2.8rem;
}

.alice-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: clamp(4rem, 8vh, 7rem);
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.alice-topics span {
    flex: 1 0 30%;
    padding: 1rem 1.2rem 1rem 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--alice-serif);
    font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.alice-topics span:nth-child(even) {
    color: #7edff1;
    font-style: italic;
}

/* Scene 06 — agency */
.alice-agency {
    display: grid;
    align-items: center;
    min-height: 112svh;
    padding: clamp(8rem, 15vh, 13rem) 0;
    background: #f2dfb8;
}

.alice-agency::after {
    position: absolute;
    right: -11vw;
    bottom: -15vw;
    width: 43vw;
    height: 43vw;
    border: 1px solid rgba(11, 23, 40, 0.16);
    border-radius: 50%;
    content: "";
}

.alice-agency__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(3rem, 7vw, 8rem);
    align-items: center;
}

.alice-agency h2 {
    max-width: 9ch;
    font-size: clamp(3.8rem, 6.4vw, 7.4rem);
}

.alice-agency h2 em {
    color: #a34547;
    font-style: italic;
}

.alice-agency .alice-prose {
    margin-top: 2.6rem;
}

.alice-begin {
    max-width: 31rem;
    margin-top: clamp(3rem, 7vh, 6rem);
    padding-top: 1.25rem;
    border-top: 1px solid rgba(11, 23, 40, 0.4);
}

.alice-begin > span {
    display: block;
    margin-bottom: 1rem;
    color: #86413f;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.alice-begin p {
    margin: 0;
    font-family: var(--alice-serif);
    font-size: 1.28rem;
    line-height: 1.45;
}

.alice-begin a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.alice-image--agency {
    height: min(67vw, 720px);
    max-height: 80svh;
    clip-path: polygon(5% 0, 100% 8%, 92% 100%, 0 91%);
}

.alice-image--agency img {
    object-position: center;
}

/* Scene 07 — invitation */
.alice-invitation {
    display: grid;
    align-items: end;
    min-height: max(820px, 112svh);
    color: #fff;
    background: var(--alice-night);
}

.alice-invitation__image,
.alice-invitation__veil {
    position: absolute;
    inset: 0;
}

.alice-invitation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% 42%;
}

.alice-invitation__veil {
    background:
        linear-gradient(90deg, rgba(5, 17, 29, 0.94) 0%, rgba(5, 17, 29, 0.69) 43%, rgba(5, 17, 29, 0.05) 74%),
        linear-gradient(0deg, rgba(5, 17, 29, 0.95), transparent 55%);
}

.alice-invitation__copy {
    z-index: 2;
    padding-bottom: clamp(7rem, 14vh, 12rem);
}

.alice-invitation h2 {
    max-width: 13ch;
    color: #fff;
    font-size: clamp(3.35rem, 6vw, 7rem);
    line-height: 0.98;
}

.alice-invitation h2 span,
.alice-invitation h2 em {
    display: block;
}

.alice-invitation h2 span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.53em;
    line-height: 1.15;
}

.alice-invitation h2 em {
    margin-top: 0.35em;
    color: #fff;
    font-style: italic;
}

.alice-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12rem;
    min-height: 52px;
    margin-top: 2.5rem;
    padding: 0.8rem 1.5rem;
    color: var(--alice-night) !important;
    background: var(--alice-yellow);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: background 220ms ease, transform 220ms var(--alice-ease);
}

.alice-button:hover,
.alice-button:focus-visible {
    background: #fff;
    transform: translateY(-3px);
}

/* Notebook and coda */
.alice-notes {
    padding: clamp(7rem, 13vh, 11rem) 0;
    background: var(--alice-paper-cool);
}

.alice-notes h2 {
    max-width: 13ch;
    font-size: clamp(3.2rem, 5.7vw, 6.6rem);
}

.alice-notes__list {
    margin: 4rem 0 0;
    padding: 0;
    border-top: 1px solid var(--alice-line);
    list-style: none;
    counter-reset: notes;
}

.alice-notes__list li {
    border-bottom: 1px solid var(--alice-line);
    counter-increment: notes;
}

.alice-notes__list a {
    display: grid;
    grid-template-columns: 7rem 1fr 2rem;
    gap: 1rem;
    align-items: center;
    min-height: 94px;
    text-decoration: none;
}

.alice-notes__list a::after {
    content: "↗";
}

.alice-notes__list span {
    color: rgba(11, 23, 40, 0.58);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.alice-notes__list strong {
    font-family: var(--alice-serif);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 400;
}

.alice-notes__empty {
    max-width: 35rem;
    margin: 3rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--alice-line);
    font-family: var(--alice-serif);
    font-size: 1.3rem;
    font-style: italic;
}

.alice-footer {
    color: #fff;
    background: #040c17;
}

.alice-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 220px;
    padding: 3rem 0;
}

.alice-wordmark--footer {
    justify-self: start;
}

.alice-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-family: var(--alice-serif);
    font-style: italic;
}

.alice-footer__inner > a:last-child {
    justify-self: end;
    min-height: 44px;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Progressive enhancement */
.alice-motion [data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 820ms var(--alice-ease), transform 820ms var(--alice-ease);
}

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

.alice-motion [data-reveal]:nth-child(2) { transition-delay: 80ms; }
.alice-motion [data-reveal]:nth-child(3) { transition-delay: 150ms; }
.alice-motion [data-reveal]:nth-child(4) { transition-delay: 220ms; }

@media (max-width: 1100px) {
    :root { --alice-frame: min(88vw, 920px); }
    .alice-rail { display: none; }
    .alice-atmosphere__grid,
    .alice-perspective__grid,
    .alice-agency__grid { gap: 3.5rem; }
    .alice-race__grid { gap: 2rem 3rem; }
}

@media (max-width: 780px) {
    :root { --alice-frame: calc(100vw - 40px); }

    body.alice-home {
        font-size: 16px;
    }

    .alice-masthead {
        left: 20px;
        right: 20px;
        min-height: 82px;
    }

    .alice-wordmark i { display: none; }
    .alice-wordmark span { font-size: 1.75rem; }
    .alice-nav__list { gap: 0.9rem; }
    .alice-nav li:nth-child(2) { display: none; }
    .alice-nav a { font-size: 0.62rem; }

    .alice-threshold {
        min-height: max(720px, 100svh);
    }

    .alice-threshold__image img {
        height: 106%;
        object-position: 54% center;
    }

    .alice-threshold__veil {
        background:
            linear-gradient(0deg, rgba(4, 10, 23, 0.97) 0%, rgba(4, 10, 23, 0.7) 48%, rgba(4, 10, 23, 0.15) 76%),
            linear-gradient(180deg, rgba(4, 10, 23, 0.55), transparent 25%);
    }

    .alice-threshold__copy {
        padding-bottom: 4.3rem;
    }

    .alice-threshold h1 {
        max-width: 9ch;
        font-size: clamp(3.85rem, 17vw, 5.8rem);
        line-height: 0.9;
    }

    .alice-threshold .alice-lede {
        max-width: 30rem;
        margin-top: 1.6rem;
        font-size: 1rem;
        line-height: 1.55;
    }

    .alice-threshold__caption { display: none; }
    .alice-kicker { margin-bottom: 1rem; }

    .alice-atmosphere,
    .alice-race,
    .alice-perspective,
    .alice-agency {
        min-height: 0;
        padding: 7rem 0;
    }

    .alice-atmosphere__grid,
    .alice-perspective__grid,
    .alice-agency__grid,
    .alice-race__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .alice-scene-number {
        position: static;
        grid-row: 1;
        margin-bottom: -1.2rem;
    }

    .alice-atmosphere .alice-scene-number,
    .alice-agency .alice-scene-number,
    .alice-invitation .alice-scene-number {
        top: auto;
    }

    .alice-atmosphere__copy,
    .alice-perspective__copy,
    .alice-agency__copy,
    .alice-race__question {
        grid-row: 2;
    }

    .alice-image--city,
    .alice-image--companion,
    .alice-image--agency {
        grid-row: 3;
        width: calc(100% + 40px);
        height: min(126vw, 620px);
        margin-left: -20px;
    }

    .alice-image--city {
        max-height: none;
        clip-path: polygon(0 4%, 100% 0, 100% 95%, 9% 100%, 0 76%);
    }

    .alice-image--city img { object-position: 63% center; }
    .alice-image--city figcaption { right: 1rem; bottom: 2rem; }

    .alice-atmosphere h2,
    .alice-race h2,
    .alice-perspective h2,
    .alice-agency h2 {
        font-size: clamp(3.25rem, 14vw, 5.1rem);
    }

    .alice-margin-note {
        margin: 2.5rem 0 0 8%;
    }

    .alice-race__ticker {
        top: 2rem;
        font-size: 8rem;
    }

    .alice-race__question { padding-top: 0; }

    .alice-image--race {
        grid-row: 3;
        height: min(100vw, 520px);
        margin: 0;
        transform: rotate(1deg);
    }

    .alice-race__aside {
        grid-column: auto;
        grid-row: 4;
        margin: 0 0 0 auto;
    }

    .alice-image--companion {
        clip-path: polygon(0 5%, 92% 0, 100% 74%, 86% 100%, 0 95%);
    }

    .alice-image--companion img { object-position: 50% center; }

    .alice-invisible {
        align-items: end;
        min-height: 980px;
    }

    .alice-invisible__image img {
        object-position: 33% 25%;
    }

    .alice-invisible__wash {
        background: linear-gradient(0deg, rgba(12, 6, 28, 0.98) 0%, rgba(12, 6, 28, 0.92) 48%, rgba(12, 6, 28, 0.15) 82%);
    }

    .alice-invisible__content {
        padding: 23rem 0 6rem;
    }

    .alice-invisible__content > *:not(.alice-scene-number) {
        margin-left: 0;
    }

    .alice-invisible h2 {
        font-size: clamp(3.15rem, 13.5vw, 5rem);
    }

    .alice-topics { margin-top: 3rem; }
    .alice-topics span { flex-basis: 50%; font-size: 1.18rem; }

    .alice-image--agency {
        max-height: none;
        clip-path: polygon(0 0, 100% 5%, 94% 100%, 0 94%);
    }

    .alice-agency::after { display: none; }

    .alice-invitation {
        min-height: 920px;
        align-items: end;
    }

    .alice-invitation__image img {
        object-position: 60% 18%;
    }

    .alice-invitation__veil {
        background: linear-gradient(0deg, rgba(5, 17, 29, 0.98) 0%, rgba(5, 17, 29, 0.86) 54%, rgba(5, 17, 29, 0.08) 88%);
    }

    .alice-invitation__copy { padding-bottom: 5.5rem; }
    .alice-invitation h2 { font-size: clamp(3rem, 12.8vw, 4.8rem); }

    .alice-notes { padding: 6rem 0; }
    .alice-notes h2 { font-size: clamp(3rem, 13vw, 4.8rem); }

    .alice-footer__inner {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-height: 260px;
    }

    .alice-footer__inner > a:last-child { justify-self: start; }
}

@media (max-width: 420px) {
    :root { --alice-frame: calc(100vw - 32px); }
    .alice-masthead { left: 16px; right: 16px; }
    .alice-nav__list { gap: 0.6rem; }
    .alice-nav a { letter-spacing: 0.09em; }
    .alice-threshold h1 { font-size: clamp(3.45rem, 17.5vw, 4.6rem); }
    .alice-image--city,
    .alice-image--companion,
    .alice-image--agency { width: calc(100% + 32px); margin-left: -16px; }
    .alice-topics span { flex-basis: 100%; padding-block: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .alice-home *,
    .alice-home *::before,
    .alice-home *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    .alice-motion [data-reveal] {
        opacity: 1;
        transform: none;
    }
    .alice-threshold__image img {
        transform: scale(1.025);
        will-change: auto;
    }
}
