/* ==========================================================
   ASHENFELL.WORLD
   Main stylesheet
========================================================== */


/* ==========================================================
   ROOT
========================================================== */

:root {
    --background: #090806;
    --background-soft: #100e0b;
    --background-raised: #16120e;

    --surface: rgba(24, 19, 14, 0.92);
    --surface-light: rgba(44, 34, 24, 0.65);

    --text: #e9dfcc;
    --text-muted: #9d917e;
    --text-dark: #17120e;

    --gold: #c59a50;
    --gold-light: #e0be7c;
    --gold-dark: #765524;

    --red: #733427;

    --border: rgba(197, 154, 80, 0.24);
    --border-strong: rgba(197, 154, 80, 0.52);

    --shadow-heavy:
        0 30px 80px rgba(0, 0, 0, 0.68);

    --content-width: 1320px;

    --header-height: 84px;

    --transition:
        220ms ease;
}


/* ==========================================================
   RESET
========================================================== */

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

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

body {
    margin: 0;

    background:
        radial-gradient(
            circle at 50% 10%,
            #1a140d 0,
            #090806 40%,
            #050504 100%
        );

    color: var(--text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    line-height: 1.6;

    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;

    max-width: 100%;
}

a {
    color: inherit;

    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

::selection {
    background: var(--gold);

    color: var(--text-dark);
}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* ==========================================================
   BACKGROUND TEXTURE
========================================================== */

.page-noise {
    position: fixed;

    inset: 0;

    z-index: 9999;

    pointer-events: none;

    opacity: 0.035;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.3) 0,
            rgba(255, 255, 255, 0.3) 1px,
            transparent 1px,
            transparent 3px
        );

    mix-blend-mode: overlay;
}


/* ==========================================================
   GLOBAL TYPOGRAPHY
========================================================== */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-weight: 500;

    line-height: 1.02;
}

h1 {
    font-size:
        clamp(
            3rem,
            7.7vw,
            7.5rem
        );

    letter-spacing: -0.045em;
}

h2 {
    font-size:
        clamp(
            2.75rem,
            5.6vw,
            5.75rem
        );

    letter-spacing: -0.04em;
}

h3 {
    font-size:
        clamp(
            1.6rem,
            2.4vw,
            2.25rem
        );
}

h1 span,
h2 span {
    color: var(--gold);
}

p {
    color: var(--text-muted);
}

.eyebrow {
    margin-bottom: 22px;

    color: var(--gold);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.32em;

    text-transform: uppercase;
}


/* ==========================================================
   LAYOUT
========================================================== */

.section {
    position: relative;

    padding:
        clamp(90px, 11vw, 170px)
        30px;
}

.section-inner {
    width: min(
        100%,
        var(--content-width)
    );

    margin-inline: auto;
}

.section-heading {
    max-width: 820px;

    margin-bottom: 80px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.section-heading > p:last-child {
    max-width: 670px;

    font-size: 1.08rem;
}

.section-heading.centered > p:last-child {
    margin-inline: auto;
}


/* ==========================================================
   HEADER
========================================================== */

.site-header {
    position: fixed;

    top: 0;
    right: 0;
    left: 0;

    z-index: 1000;

    height: var(--header-height);

    border-bottom:
        1px solid transparent;

    transition:
        background var(--transition),
        border-color var(--transition),
        backdrop-filter var(--transition);
}

.site-header.scrolled {
    border-color:
        rgba(197, 154, 80, 0.12);

    background:
        rgba(7, 6, 5, 0.88);

    backdrop-filter:
        blur(18px);
}

.header-inner {
    width: min(
        calc(100% - 48px),
        1500px
    );

    height: 100%;

    margin-inline: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.brand {
    display: inline-flex;

    flex-direction: column;

    line-height: 1;
}

.brand-main {
    color: var(--text);

    font-size: 1.35rem;

    letter-spacing: 0.18em;
}

.brand-sub {
    margin-top: 6px;

    color: var(--gold);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.52rem;

    font-weight: 700;

    letter-spacing: 0.29em;
}

.main-navigation {
    display: flex;

    align-items: center;

    gap: 34px;
}

.main-navigation a {
    position: relative;

    color: #c7bdac;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.72rem;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
        color var(--transition);
}

.main-navigation a::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -9px;
    left: 0;

    height: 1px;

    transform: scaleX(0);

    transform-origin: center;

    background: var(--gold);

    transition:
        transform var(--transition);
}

.main-navigation a:hover {
    color: var(--gold-light);
}

.main-navigation a:hover::after {
    transform: scaleX(1);
}

.mobile-nav-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;

    width: 25px;
    height: 1px;

    margin: 6px auto;

    background: var(--text);

    transition:
        transform var(--transition),
        opacity var(--transition);
}


/* ==========================================================
   HERO
========================================================== */

.hero {
    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;

    align-items: center;

    padding:
        calc(var(--header-height) + 70px)
        7vw
        100px;

    overflow: hidden;
}

.hero-background {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 4, 3, 0.95) 0%,
            rgba(5, 4, 3, 0.74) 38%,
            rgba(5, 4, 3, 0.17) 70%
        ),
        linear-gradient(
            0deg,
            #090806 0%,
            transparent 30%
        ),
        url("../assets/hero-bg.png")
        center
        center /
        cover
        no-repeat;

    transform: scale(1.03);
}

.hero-vignette {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            transparent 35%,
            rgba(0, 0, 0, 0.62) 100%
        );

    pointer-events: none;
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 990px;
}

.hero h1 {
    max-width: 1000px;

    margin-bottom: 34px;

    text-wrap: balance;
}

.hero h1 span {
    display: block;
}

.hero-copy {
    max-width: 660px;

    margin-bottom: 42px;

    color: #bfb4a1;

    font-size:
        clamp(
            1rem,
            1.35vw,
            1.22rem
        );
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 65px;
}


/* ==========================================================
   BUTTONS
========================================================== */

.button {
    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 26px;

    border:
        1px solid transparent;

    cursor: pointer;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--gold);

    color: #16110b;
}

.button-primary:hover {
    background: var(--gold-light);
}

.button-secondary {
    border-color:
        rgba(224, 190, 124, 0.42);

    background:
        rgba(12, 10, 8, 0.48);

    color: var(--text);
}

.button-secondary:hover {
    border-color: var(--gold);

    background:
        rgba(197, 154, 80, 0.09);

    color: var(--gold-light);
}


/* ==========================================================
   HERO GAME TITLE
========================================================== */

.hero-game-title {
    display: inline-flex;

    flex-direction: column;

    gap: 8px;

    padding-left: 18px;

    border-left:
        2px solid var(--gold);
}

.hero-game-title span {
    color: #807666;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.58rem;

    font-weight: 700;

    letter-spacing: 0.18em;
}

.hero-game-title strong {
    color: #ddd3c0;

    font-size: 1rem;

    letter-spacing: 0.08em;
}

.hero-game-title em {
    color: var(--gold);

    font-style: normal;
}


/* ==========================================================
   SCROLL INDICATOR
========================================================== */

.scroll-indicator {
    position: absolute;

    right: 40px;
    bottom: 42px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 16px;

    border: 0;

    background: transparent;

    color: #978b78;

    cursor: pointer;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.58rem;

    font-weight: 700;

    letter-spacing: 0.22em;
}

.scroll-line {
    position: relative;

    width: 52px;
    height: 1px;

    background:
        rgba(197, 154, 80, 0.28);

    overflow: hidden;
}

.scroll-line::after {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: var(--gold);

    animation:
        scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }

}


/* ==========================================================
   INTRO
========================================================== */

.intro-section {
    background:
        linear-gradient(
            180deg,
            #090806,
            #0e0b08
        );
}

.intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.75fr);

    gap:
        clamp(
            50px,
            9vw,
            150px
        );

    align-items: start;
}

.intro-heading h2 {
    max-width: 700px;
}

.intro-copy {
    padding-top: 45px;
}

.intro-copy p {
    font-size: 1.02rem;
}

.intro-copy .large-copy {
    margin-bottom: 26px;

    color: #d3c8b4;

    font-size:
        clamp(
            1.3rem,
            2vw,
            1.75rem
        );

    line-height: 1.45;
}

.text-link {
    display: inline-flex;

    gap: 12px;

    align-items: center;

    margin-top: 20px;

    color: var(--gold);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* ==========================================================
   GAME SECTION
========================================================== */

.game-section {
    background:
        #080706;
}

.game-showcase {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(330px, 0.75fr);

    gap:
        clamp(
            40px,
            7vw,
            100px
        );

    align-items: center;
}

.game-image {
    position: relative;
}

.game-image img {
    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;

    box-shadow: var(--shadow-heavy);

    filter:
        saturate(0.8)
        contrast(1.06);
}

.image-frame {
    position: absolute;

    inset: 14px;

    border:
        1px solid rgba(224, 190, 124, 0.34);

    pointer-events: none;
}

.game-details {
    display: flex;

    flex-direction: column;
}

.game-detail {
    display: grid;

    grid-template-columns:
        48px
        1fr;

    gap: 22px;

    padding: 27px 0;

    border-bottom:
        1px solid rgba(197, 154, 80, 0.13);
}

.game-detail:first-child {
    border-top:
        1px solid rgba(197, 154, 80, 0.13);
}

.detail-number {
    color: var(--gold);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.62rem;

    font-weight: 700;

    letter-spacing: 0.12em;
}

.game-detail h3 {
    margin-bottom: 8px;

    font-size: 1.45rem;
}

.game-detail p {
    margin-bottom: 0;

    font-size: 0.92rem;
}


/* ==========================================================
   MAP
========================================================== */

.map-section {
    min-height: 760px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.map-background {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 5, 4, 0.95) 0%,
            rgba(6, 5, 4, 0.78) 48%,
            rgba(6, 5, 4, 0.35) 100%
        ),
        linear-gradient(
            180deg,
            #080706 0,
            transparent 18%,
            transparent 82%,
            #080706 100%
        ),
        url("../assets/world-map.jpg")
        center
        center /
        cover
        no-repeat;

    filter:
        sepia(0.22)
        saturate(0.65);
}

.map-content {
    position: relative;

    z-index: 2;
}

.map-content h2 {
    max-width: 760px;
}

.map-content > p {
    max-width: 620px;
}

.world-stat-grid {
    max-width: 850px;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 1px;

    margin-top: 70px;

    border:
        1px solid rgba(197, 154, 80, 0.18);

    background:
        rgba(197, 154, 80, 0.18);
}

.world-stat-grid article {
    min-height: 130px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 24px;

    background:
        rgba(8, 7, 5, 0.86);
}

.world-stat-grid strong {
    color: var(--gold);

    font-size: 2.4rem;

    font-weight: 500;
}

.world-stat-grid span {
    color: #9e9280;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.64rem;

    font-weight: 600;

    letter-spacing: 0.11em;

    text-transform: uppercase;
}


/* ==========================================================
   CHRONICLES
========================================================== */

.chronicles-section {
    background:
        linear-gradient(
            180deg,
            #0b0907,
            #080706
        );
}

.chronicle-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}

.chronicle-card {
    min-height: 380px;

    display: flex;

    flex-direction: column;

    padding:
        clamp(
            30px,
            4vw,
            52px
        );

    border-right:
        1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.012);

    transition:
        background var(--transition),
        transform var(--transition);
}

.chronicle-card:last-child {
    border-right: 0;
}

.chronicle-card:hover,
.chronicle-card:focus-visible {
    background:
        rgba(197, 154, 80, 0.055);

    outline: none;
}

.chronicle-card.featured {
    background:
        linear-gradient(
            145deg,
            rgba(115, 52, 39, 0.22),
            rgba(197, 154, 80, 0.035)
        );
}

.chronicle-number {
    margin-bottom: 50px;

    color: var(--gold);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.58rem;

    font-weight: 700;

    letter-spacing: 0.18em;
}

.chronicle-card h3 {
    max-width: 330px;
}

.chronicle-card p {
    margin-bottom: 40px;

    font-size: 0.94rem;
}

.chronicle-link {
    margin-top: auto;

    color: #c8baa1;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.64rem;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* ==========================================================
   CHARACTERS
========================================================== */

.characters-section {
    background:
        #080706;
}

.character-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 25px;
}

.character-card {
    position: relative;

    overflow: hidden;

    background: var(--background-raised);

    border:
        1px solid rgba(197, 154, 80, 0.14);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.character-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(197, 154, 80, 0.45);
}

.character-image {
    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;
}

.character-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 52%,
            #16120e 100%
        );
}

.character-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(0.78)
        contrast(1.03);

    transition:
        transform 650ms ease;
}

.character-card:hover img {
    transform:
        scale(1.035);
}

.character-info {
    padding: 26px 28px 32px;
}

.character-info span {
    color: var(--gold);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.56rem;

    font-weight: 700;

    letter-spacing: 0.18em;
}

.character-info h3 {
    margin:
        10px 0
        12px;

    font-size: 1.65rem;
}

.character-info p {
    margin: 0;

    font-size: 0.9rem;
}

.section-cta {
    margin-top: 50px;

    text-align: center;
}


/* ==========================================================
   QUOTE
========================================================== */

.quote-section {
    border-top:
        1px solid rgba(197, 154, 80, 0.1);

    border-bottom:
        1px solid rgba(197, 154, 80, 0.1);

    background:
        radial-gradient(
            circle at center,
            rgba(115, 52, 39, 0.13),
            transparent 60%
        ),
        #0a0806;

    text-align: center;
}

.quote-inner {
    max-width: 950px;

    margin-inline: auto;
}

.quote-mark {
    height: 60px;

    color: var(--gold);

    font-size: 6rem;

    line-height: 1;
}

blockquote {
    margin:
        20px auto
        30px;

    color: #ded4c2;

    font-size:
        clamp(
            2rem,
            4.5vw,
            4.25rem
        );

    font-weight: 400;

    line-height: 1.15;

    text-wrap: balance;
}

.quote-inner p {
    color: var(--gold);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* ==========================================================
   CARDS PROMO
========================================================== */

.cards-section {
    background:
        linear-gradient(
            135deg,
            #090706,
            #12100b
        );
}

.cards-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(320px, 1.1fr);

    align-items: center;

    gap:
        clamp(
            50px,
            9vw,
            130px
        );
}

.cards-copy {
    max-width: 620px;
}

.cards-copy p:not(.eyebrow) {
    max-width: 570px;

    margin-bottom: 35px;
}

.card-pack-display {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.card-pack-display img {
    position: relative;

    z-index: 2;

    max-width: 520px;

    width: 85%;

    filter:
        drop-shadow(
            0 40px 40px rgba(0, 0, 0, 0.65)
        );

    transform:
        rotate(3deg);
}

.pack-glow {
    position: absolute;

    width: 58%;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(197, 154, 80, 0.24),
            transparent 69%
        );

    filter:
        blur(18px);
}


/* ==========================================================
   NEWSLETTER
========================================================== */

.newsletter-section {
    background:
        linear-gradient(
            180deg,
            #090706,
            #050504
        );
}

.newsletter-inner {
    max-width: 850px;

    text-align: center;
}

.newsletter-inner > p:not(.eyebrow) {
    max-width: 630px;

    margin:
        0 auto
        36px;

    font-size: 1.02rem;
}

.newsletter-form {
    max-width: 680px;

    display: grid;

    grid-template-columns:
        1fr
        auto;

    gap: 10px;

    margin-inline: auto;
}

.newsletter-form input {
    min-width: 0;

    height: 54px;

    padding:
        0 19px;

    border:
        1px solid rgba(197, 154, 80, 0.24);

    outline: 0;

    background:
        rgba(255, 255, 255, 0.03);

    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.85rem;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: #746b5e;
}

.form-message {
    min-height: 24px;

    margin:
        16px auto
        0 !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.72rem !important;

    letter-spacing: 0.04em;
}


/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
    padding:
        55px 30px;

    border-top:
        1px solid rgba(197, 154, 80, 0.12);

    background: #050504;
}

.footer-inner {
    width: min(
        100%,
        var(--content-width)
    );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    gap: 50px;

    align-items: center;
}

.footer-brand {
    display: flex;

    flex-direction: column;
}

.footer-brand strong {
    font-size: 1rem;

    letter-spacing: 0.17em;
}

.footer-brand span {
    margin-top: 4px;

    color: var(--gold);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.48rem;

    font-weight: 700;

    letter-spacing: 0.22em;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 25px;
}

.footer-links a {
    color: #827767;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.64rem;

    font-weight: 700;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    max-width: 400px;

    margin: 0;

    color: #675f54;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.64rem;

    line-height: 1.6;

    text-align: right;
}


/* ==========================================================
   SCROLL REVEAL
========================================================== */

.reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 850ms ease,
        transform 850ms ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1000px) {

    .main-navigation {
        gap: 20px;
    }

    .intro-grid,
    .game-showcase,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .intro-copy {
        padding-top: 0;
    }

    .game-showcase {
        gap: 55px;
    }

    .world-stat-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .chronicle-grid {
        grid-template-columns: 1fr;
    }

    .chronicle-card {
        min-height: 280px;

        border-right: 0;

        border-bottom:
            1px solid var(--border);
    }

    .chronicle-card:last-child {
        border-bottom: 0;
    }

    .character-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .footer-inner {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .copyright {
        max-width: none;

        text-align: center;
    }

}


@media (max-width: 760px) {

    :root {
        --header-height: 72px;
    }

    .section {
        padding:
            90px 20px;
    }

    .header-inner {
        width:
            calc(100% - 36px);
    }

    .mobile-nav-toggle {
        display: block;

        z-index: 1002;
    }

    .main-navigation {
        position: fixed;

        inset: 0;

        z-index: 1001;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 26px;

        padding: 70px 32px;

        background:
            rgba(7, 6, 5, 0.98);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            opacity var(--transition),
            transform var(--transition),
            visibility var(--transition);
    }

    .main-navigation.open {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }

    .main-navigation a {
        font-size: 1rem;

        letter-spacing: 0.16em;
    }

    .mobile-nav-toggle.active span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

    .hero {
        align-items: flex-end;

        padding:
            calc(var(--header-height) + 80px)
            20px
            100px;
    }

    .hero-background {
        background:
            linear-gradient(
                180deg,
                rgba(5, 4, 3, 0.18) 0%,
                rgba(5, 4, 3, 0.75) 50%,
                #090806 96%
            ),
            url("../assets/hero-bg.jpg")
            62%
            center /
            cover
            no-repeat;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        max-width: 390px;
    }

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

    .scroll-indicator {
        display: none;
    }

    .world-stat-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .character-grid {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form .button {
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
    }

}


@media (max-width: 480px) {

    .hero-game-title {
        display: none;
    }

    .world-stat-grid {
        grid-template-columns: 1fr;
    }

    .world-stat-grid article {
        min-height: 100px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

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

    html {
        scroll-behavior: auto;
    }

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

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

  }
