:root {
    --bg-deep: #060e1c;
    --bg: #0c1828;
    --bg-soft: #142339;
    --fg: #ffffff;
    --fg-soft: #f5f1e8;
    --accent: #e8c876;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    cursor: none !important;
}

*, *::before, *::after,
a, button, input, textarea, select, label, .link, .check {
    cursor: none !important;
}

/* Smooth fleur-de-lis follower (acts as the cursor) */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9999;
    transform: translate3d(-100px, -100px, 0);
    will-change: transform;
    opacity: 0;
    transition: opacity 0.3s var(--ease-soft);
}

.cursor-follower img {
    transition: transform 0.4s var(--ease-out);
    transform-origin: center center;
}

.cursor-follower.is-active {
    opacity: 1;
}

.cursor-follower.is-hover img {
    transform: scale(0.5);
}

.cursor-follower img {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 0 6px rgba(232, 200, 118, 0.35));
}

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Layered atmospheric background */
body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(80, 110, 160, 0.18), transparent 70%),
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(20, 35, 57, 0.6), transparent 60%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 40%, var(--bg) 60%, var(--bg-deep) 100%);
}

/* Subtle starfield / paper grain */
body::after {
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.18), transparent 50%),
        radial-gradient(1px 1px at 80% 35%, rgba(255, 255, 255, 0.12), transparent 50%),
        radial-gradient(1px 1px at 25% 75%, rgba(255, 255, 255, 0.15), transparent 50%),
        radial-gradient(1px 1px at 65% 65%, rgba(255, 255, 255, 0.10), transparent 50%),
        radial-gradient(1px 1px at 45% 15%, rgba(255, 255, 255, 0.14), transparent 50%),
        radial-gradient(1px 1px at 90% 85%, rgba(255, 255, 255, 0.10), transparent 50%),
        radial-gradient(1px 1px at 15% 50%, rgba(255, 255, 255, 0.10), transparent 50%);
    opacity: 0.7;
    mix-blend-mode: screen;
    animation: drift 30s ease-in-out infinite alternate;
}

@keyframes drift {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-12px, -8px, 0); }
}

/* Bring real content above background layers */
.top-ornament,
.hero,
footer {
    position: relative;
    z-index: 1;
}

/* Reveal animations (fade + slide up on load) */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    animation: revealIn 1.1s var(--ease-out) forwards;
}

.reveal-delay-1 { animation-delay: 0.15s; }
.reveal-delay-2 { animation-delay: 0.30s; }
.reveal-delay-3 { animation-delay: 0.45s; }
.reveal-delay-4 { animation-delay: 0.60s; }
.reveal-delay-5 { animation-delay: 0.75s; }
.reveal-delay-6 { animation-delay: 0.90s; }

@keyframes revealIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ornaments (flourishes) */
.top-ornament {
    display: flex;
    justify-content: center;
    padding: 64px 24px 16px;
    color: var(--fg-soft);
}

.ornament {
    width: 280px;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.6s var(--ease-soft);
}

.ornament:hover {
    opacity: 1;
}

.ornament-bottom {
    margin-bottom: 20px;
}

/* Hero / main */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 32px;
    text-align: center;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 720px;
    width: 100%;
}

/* Knight illustration */
.illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration img.knight {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    /* Show original artwork as-is (dark ink, light background) */
    filter:
        drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35))
        drop-shadow(0 0 18px rgba(232, 200, 118, 0.08));
    animation: floatRear 7s ease-in-out infinite;
    transform-origin: 60% 80%;
    transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.illustration img.knight:hover {
    transform: translateY(-6px) rotate(-1.2deg) scale(1.02);
    filter:
        drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 26px rgba(232, 200, 118, 0.18));
}

@keyframes floatRear {
    0%   { transform: translateY(0) rotate(-0.4deg); }
    25%  { transform: translateY(-4px) rotate(-1deg); }
    50%  { transform: translateY(-7px) rotate(-1.6deg); }
    75%  { transform: translateY(-4px) rotate(-1deg); }
    100% { transform: translateY(0) rotate(-0.4deg); }
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

/* Wordmark — Cinzel for Roman-inscription elegance */
.wordmark {
    font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(34px, 4.4vw, 52px);
    letter-spacing: 0.12em;
    line-height: 1.05;
    color: var(--fg);
    margin-bottom: 4px;
    white-space: nowrap;
    text-shadow:
        0 0 1px rgba(255, 255, 255, 0.2),
        0 2px 18px rgba(232, 200, 118, 0.06);
    transition: letter-spacing 0.8s var(--ease-out);
}

.wordmark:hover {
    letter-spacing: 0.14em;
}

/* Prose */
.prose {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.prose p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    line-height: 1.6;
    color: var(--fg);
    font-weight: 400;
}

.prose p::first-letter {
    font-weight: 500;
}

/* Apply to Join CTA */
.cta-join {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--fg);
    font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        color 0.4s var(--ease-out),
        border-color 0.4s var(--ease-out),
        transform 0.4s var(--ease-out),
        letter-spacing 0.5s var(--ease-out);
}

.cta-join::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 200, 118, 0.95), rgba(255, 255, 255, 0.95));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s var(--ease-out);
    z-index: -1;
}

.cta-join:hover {
    color: var(--bg);
    border-color: rgba(232, 200, 118, 0.95);
    letter-spacing: 0.22em;
    transform: translateY(-1px);
}

.cta-join:hover::before {
    transform: scaleX(1);
}

.cta-join .arrow {
    display: inline-block;
    transition: transform 0.4s var(--ease-out);
    font-size: 16px;
    letter-spacing: 0;
}

.cta-join:hover .arrow {
    transform: translateX(6px);
}

.cta-join:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* Links */
.links {
    display: flex;
    gap: 36px;
    margin-top: 4px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.link {
    color: var(--fg);
    text-decoration: none;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s var(--ease-soft);
}

.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s var(--ease-out);
}

.link:hover {
    color: var(--accent);
}

.link:hover::after {
    transform: scaleX(1);
}

.link .arrow {
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    transition: transform 0.4s var(--ease-out);
}

.link:hover .arrow {
    transform: translateX(6px);
}

/* Location */
.location {
    display: flex;
    gap: 36px;
    align-items: baseline;
    margin-top: 8px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
}

.location .city {
    font-style: italic;
    color: var(--fg);
    font-weight: 400;
}

.location .venue {
    font-weight: 600;
    color: var(--fg);
    letter-spacing: 0.01em;
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 24px 64px;
    gap: 14px;
    color: var(--fg-soft);
}

.copyright {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    color: var(--fg);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Selection */
::selection {
    background: rgba(232, 200, 118, 0.35);
    color: #fff;
}

/* Responsive */
@media (max-width: 880px) {
    .hero {
        padding: 32px 24px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 580px;
    }

    .illustration img.knight {
        max-width: 280px;
    }

    .ornament {
        width: 220px;
    }

    .wordmark {
        font-size: 36px;
        white-space: normal;
        letter-spacing: 0.10em;
    }

    .prose p {
        font-size: 18px;
    }

    .links {
        flex-wrap: wrap;
        gap: 24px;
    }

    .location {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .top-ornament {
        padding: 40px 16px 8px;
    }

    .ornament {
        width: 180px;
    }

    .hero {
        padding: 24px 20px;
    }

    .wordmark {
        font-size: 30px;
        letter-spacing: 0.08em;
    }
}

/* ===== Apply page ===== */
.apply-body {
    min-height: 100vh;
}

.apply-body .top-ornament {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.back-home {
    position: absolute;
    top: 24px;
    left: 32px;
    color: var(--fg);
    text-decoration: none;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.4s var(--ease-soft), color 0.4s var(--ease-soft);
}

.back-home:hover {
    opacity: 1;
    color: var(--accent);
}

.back-arrow {
    display: inline-block;
    transition: transform 0.4s var(--ease-out);
    font-style: normal;
}

.back-home:hover .back-arrow {
    transform: translateX(-4px);
}

.apply-page {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 24px 80px;
    position: relative;
    z-index: 1;
}

.apply-inner {
    width: min(620px, 100%);
    background: linear-gradient(180deg, rgba(15, 28, 48, 0.6) 0%, rgba(10, 21, 37, 0.6) 100%);
    border: 1px solid rgba(232, 200, 118, 0.14);
    border-radius: 14px;
    padding: 56px 56px 48px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.apply-title {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fg);
    margin-bottom: 8px;
}

.back-home-success {
    position: static;
    margin-top: 24px;
    justify-content: center;
}

@media (max-width: 640px) {
    .back-home {
        position: static;
        margin-bottom: 12px;
    }

    .apply-inner {
        padding: 36px 24px 32px;
    }

    .apply-title {
        font-size: 22px;
    }
}

.join-header {
    text-align: center;
    margin-bottom: 28px;
}

.join-fleur {
    width: 32px;
    height: 32px;
    color: var(--accent);
    margin-bottom: 14px;
    opacity: 0.9;
}

.join-header h2 {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg);
    margin-bottom: 8px;
}

.join-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    transition: color 0.3s var(--ease-soft);
}

.field input,
.field textarea,
.field select {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 0 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    color: var(--fg);
    width: 100%;
    transition: border-color 0.4s var(--ease-out);
    border-radius: 0;
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: none;
    padding-right: 28px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='none' stroke='%23ffffff' stroke-opacity='0.55' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 12px 8px;
}

.field select option {
    background: #0f1c30;
    color: var(--fg);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.field textarea {
    resize: vertical;
    line-height: 1.55;
    min-height: 96px;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
    font-style: italic;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

/* Other-interest reveal input */
.other-input {
    margin-top: 12px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(232, 200, 118, 0.45);
    padding: 6px 0 8px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    font-style: italic;
    color: var(--fg);
    width: 100%;
    transition: border-color 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
    border-radius: 0;
}

.other-input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.other-input:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.other-input[hidden] {
    display: none;
}

.field:focus-within .field-label {
    color: var(--accent);
}

.field-group {
    border: 0;
    padding: 0;
    margin: 0;
}

.checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 18px;
    margin-top: 8px;
}

.check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    color: var(--fg);
    user-select: none;
    transition: color 0.3s var(--ease-soft);
}

.check input {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.3s var(--ease-soft), background 0.3s var(--ease-soft);
}

.check input:checked {
    border-color: var(--accent);
    background: var(--accent);
}

.check input:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid var(--bg);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check:hover { color: var(--accent); }

.join-submit {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(232, 200, 118, 0.7);
    color: var(--fg);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        color 0.4s var(--ease-out),
        border-color 0.4s var(--ease-out),
        transform 0.3s var(--ease-out),
        opacity 0.3s var(--ease-soft);
}

.join-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 200, 118, 0.95), rgba(255, 255, 255, 0.95));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s var(--ease-out);
    z-index: -1;
}

.join-submit:hover:not(:disabled) {
    color: var(--bg);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.join-submit:hover:not(:disabled)::before {
    transform: scaleX(1);
}

.join-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.join-submit.is-loading .submit-label::after {
    content: " …";
    animation: dots 1.2s steps(3, end) infinite;
}

@keyframes dots {
    0%, 20% { content: " ."; }
    40%     { content: " .."; }
    60%, 100% { content: " ..."; }
}

.submit-arrow {
    display: inline-block;
    transition: transform 0.4s var(--ease-out);
    letter-spacing: 0;
    font-size: 15px;
}

.join-submit:hover:not(:disabled) .submit-arrow {
    transform: translateX(6px);
}

.join-error {
    margin-top: 4px;
    color: #ff9b8a;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    font-style: italic;
    text-align: center;
}

.join-success {
    text-align: center;
    padding: 24px 0 8px;
    animation: revealIn 0.6s var(--ease-out) forwards;
}

.join-success h3 {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.join-success p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    color: var(--fg);
    line-height: 1.55;
}

/* ===== Mobile (≤ 720px) ===== */
@media (max-width: 720px) {
    .top-ornament {
        padding: 36px 16px 8px;
    }

    .ornament {
        width: 200px;
    }

    .hero {
        padding: 32px 20px 48px;
    }

    .hero-inner {
        gap: 28px;
    }

    .wordmark {
        white-space: normal;
        font-size: clamp(28px, 8vw, 40px);
        letter-spacing: 0.08em;
        line-height: 1.15;
    }

    .prose p {
        font-size: 17px;
        line-height: 1.55;
    }

    .links {
        gap: 24px;
    }

    .link {
        font-size: 18px;
    }

    /* Apply page becomes inline on phones — no card chrome */
    .apply-page {
        padding: 16px 18px 56px;
    }

    .apply-inner {
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 8px 0 0;
        border-radius: 0;
    }

    .apply-title {
        font-size: 22px;
        letter-spacing: 0.12em;
    }

    .join-header h2,
    .apply-title {
        font-size: 22px;
    }

    .join-sub {
        font-size: 15px;
    }

    .join-form {
        gap: 20px;
    }

    .field input,
    .field textarea,
    .field select {
        font-size: 17px;
        padding: 10px 0 12px;
    }

    .field textarea {
        min-height: 110px;
    }

    /* Bigger tap targets for checkboxes */
    .checks {
        grid-template-columns: 1fr 1fr;
        gap: 14px 16px;
    }

    .check {
        padding: 4px 0;
        font-size: 17px;
    }

    .check input {
        width: 20px;
        height: 20px;
    }

    .check input:checked::after {
        left: 6px;
        top: 1px;
        width: 6px;
        height: 11px;
    }

    /* Submit becomes full-width with a comfortable tap height */
    .join-submit {
        width: 100%;
        padding: 16px 24px;
        font-size: 13px;
    }

    .back-home {
        position: static;
        margin: 0 auto 8px;
        font-size: 15px;
    }

    .apply-body .top-ornament {
        gap: 12px;
    }

    /* Pause background drift to save mobile battery */
    body::after {
        animation: none;
        opacity: 0.5;
    }
}

/* ===== Small phones (≤ 420px) ===== */
@media (max-width: 420px) {
    .top-ornament {
        padding: 28px 14px 4px;
    }

    .ornament {
        width: 160px;
    }

    .hero {
        padding: 24px 18px 40px;
    }

    .wordmark {
        font-size: 26px;
        letter-spacing: 0.06em;
    }

    .prose p {
        font-size: 16px;
    }

    .apply-page {
        padding: 12px 14px 48px;
    }

    .apply-title,
    .join-header h2 {
        font-size: 20px;
        letter-spacing: 0.10em;
    }

    .field input,
    .field textarea,
    .field select {
        font-size: 16px;
    }

    .checks {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .copyright {
        font-size: 14px;
    }

    .ornament-bottom {
        width: 160px;
    }
}

/* ===== Touch devices: hide custom cursor, restore native ===== */
@media (hover: none), (pointer: coarse) {
    html, body, *, *::before, *::after,
    a, button, input, textarea, select, label, .link, .check {
        cursor: auto !important;
    }

    a, button, .link, [role="button"], .check, .join-submit {
        cursor: pointer !important;
    }

    .cursor-follower { display: none !important; }

    /* Use the system tap-highlight instead of relying on hover state */
    a, button, .link, .check, .join-submit {
        -webkit-tap-highlight-color: rgba(232, 200, 118, 0.18);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .illustration img.knight,
    body::after {
        animation: none;
    }

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

    *, *::before, *::after {
        transition-duration: 0.01ms !important;
    }
}
