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

:root {
    --void: #06040a;
    --white: #ffffff;
    --stone: #0d0a14;
    --deep: #160f1c;
    --panel: rgba(22, 15, 28, 0.64);
    --blood: #6b1010;
    --ember: #b03a16;
    --ember-bright: #d4561e;
    --gold: #d8b985;
    --gold-dim: #a88b62;
    --pale: #ece2d1;
    --ghost: #b7a995;
    --vein: rgba(180, 60, 20, 0.35);
    --vein-strong: rgba(180, 60, 20, 0.65);
    --content-width: 1180px;
}

@font-face {
    font-family: "Agency FB";
    src: url("fonts/AgencyFB-Bold.woff2") format("woff2"),
         url("fonts/AgencyFB-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 19px;
    color: var(--pale);
    background:
        radial-gradient(circle at top, rgba(176, 58, 22, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(10, 8, 16, 0.82), rgba(8, 6, 12, 0.9)),
        url("images/background2.jpg") center top / cover no-repeat fixed;
    overflow-x: hidden;
    position: relative;
}

@media (pointer: fine) {
    body,
    a,
    button,
    input {
        cursor: none;
    }
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: 0.55;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 42%, rgba(6, 4, 10, 0.58) 100%);
    pointer-events: none;
    z-index: 9996;
}

#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.62;
}

.cursor-aura,
.cursor-glow,
.cursor-ring,
.cursor-core {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%);
    
}

.cursor-aura {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 235, 182, 0.15) 0%, rgba(201, 162, 100, 0.08) 38%, rgba(176, 58, 22, 0.04) 60%, transparent 74%);
    mix-blend-mode: screen;
    filter: blur(18px);
}

.cursor-glow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 58, 22, 0.62) 0%, rgba(201, 162, 100, 0.24) 45%, transparent 74%);
    mix-blend-mode: screen;
    filter: blur(4px);

    
}

.cursor-ring {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(201, 162, 100, 0.65);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(201, 162, 100, 0.18);
    transition: transform 0.18s ease, border-color 0.2s ease;

}

.cursor-core {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(201, 162, 100, 0.7);
}

body.cursor-active .cursor-aura,
body.cursor-active .cursor-glow,
body.cursor-active .cursor-ring,
body.cursor-active .cursor-core {
    opacity: 1;
}

body.cursor-hover .cursor-ring {
    transform: translate(-50%, -50%) scale(1.45);
    border-color: rgba(212, 175, 55, 0.95);
}

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

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

.mono {
    font-family: "Share Tech Mono", monospace;
    font-size: 0.84em;
    letter-spacing: 0.1em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: min(calc(100% - 32px), var(--content-width));
    margin: 20px auto 0;
    padding: 16px 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 300px;
    border-bottom: 1px solid var(--vein);
    background: linear-gradient(180deg, rgba(13, 10, 20, 0.96) 0%, rgba(6, 4, 10, 0.88) 100%);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-eye-wrap {
    position: relative;
    width: 68px;
    height: 68px;
}

.brand-mark {
    width: 68px;
    height: 68px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 14px rgba(180, 58, 22, 0.5));
}

.brand-eye-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(180, 58, 22, 0.3);
    animation: ring-pulse 3s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.12); opacity: 0.7; }
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-label {
    font-family: "Share Tech Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember);
}

.brand-name {
    font-family: 'Agency FB', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    font-family: "Cinzel", serif;
    font-size: 0.88rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ghost);
    transition: color 0.3s ease;
    position: relative;
}

.site-nav a::after,
.social-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--ember);
    transition: width 0.3s ease;
}

.site-nav a:hover,
.social-link:hover {
    color: var(--gold);
}

.site-nav a:hover::after,
.social-link:hover::after {
    width: 100%;
}

.page-shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), var(--content-width));
    margin: 0 auto;
    padding: 0 0 100px;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--blood), var(--ember), var(--gold));
    z-index: 120;
    box-shadow: 0 0 12px rgba(176, 58, 22, 0.5);
}

.eyebrow {
    font-family: "Share Tech Mono", monospace;
    font-size: 1.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 16px;
    display: block;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - 110px);
    padding: 60px 0 40px;
    position: relative;
}

.hero-copy {
    padding: 24px 0;
}

.hero-title {
    font-family: "Cinzel", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--pale);
    margin-bottom: 22px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--ghost);
    max-width: 54ch;
    margin-bottom: 32px;
    font-style: italic;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-note {
    font-size: 0.88rem;
    color: var(--gold-dim);
    letter-spacing: 0.04em;
}

.showcase-poster {
    position: relative;
    min-height: 520px;
    padding: 110px;
    border: 1px solid rgba(180, 58, 22, 0.18);
    background:
        linear-gradient(180deg, rgba(13, 10, 20, 0.68), rgba(6, 4, 10, 0.88)),
        url("images/background2.jpg") center / cover no-repeat;
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.showcase-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(176, 58, 22, 0.1), transparent 44%),
        linear-gradient(transparent, rgba(6, 4, 10, 0.32));
    pointer-events: none;
}

.poster-frame {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201, 162, 100, 0.18);
}

.poster-header,
.poster-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    gap: 10px;
    flex-wrap: wrap;
}

.poster-stamp{
    font-family: "Share Tech Mono", monospace;
    font-size: 1.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ember-bright);
}
.poster-kicker {
    font-family: "Share Tech Mono", monospace;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ember-bright);
    margin-bottom: 0.9rem;
}

.poster-art {
    position: relative;
    z-index: 1;
    min-height: 230px;
    display: grid;
    place-items: center;
}

.poster-halo {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 100, 0.18);
    box-shadow:
        0 0 0 18px rgba(201, 162, 100, 0.04),
        0 0 80px rgba(176, 58, 22, 0.18);
}

.poster-art img {
    position: relative;
    z-index: 1;
    width: min(72%, 240px);
    filter: drop-shadow(0 0 24px rgba(176, 58, 22, 0.35));
}

.poster-body {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 28ch;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.poster-body h2 {
    margin: 0 0 120px;
    font-family: "Agency FB", sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 0.9;
    letter-spacing: 0.06em;
    color: var(--gold);                /*Untitled Project*/
    white-space: nowrap;
}

.poster-body p,
.poster-footer span {                  /*Uniquenutz Games Presents*/
    color: var(--white);
    line-height: 0.75;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 24px;
    font-family: "Cinzel", serif;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-ember {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    animation: ember-pulse 2s ease-in-out infinite;
}

@keyframes ember-pulse {
    0%, 100% { box-shadow: 0 0 6px var(--ember); background: var(--ember); }
    50% { box-shadow: 0 0 12px var(--gold); background: var(--gold); }
}

.button-primary {
    background: linear-gradient(160deg, #7a2010 0%, #4a0f08 100%);
    border-color: rgba(180, 58, 22, 0.5);
    color: var(--pale);
    box-shadow: 0 0 20px rgba(107, 16, 16, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.button-primary:hover {
    background: linear-gradient(160deg, #9a2e18 0%, #6b1818 100%);
    box-shadow: 0 0 30px rgba(176, 58, 22, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.button-ghost,
.button-secondary {
    background: transparent;
    border-color: var(--vein);
    color: var(--ghost);
}

.button-ghost:hover,
.button-secondary:hover {
    border-color: var(--vein-strong);
    color: var(--pale);
    background: rgba(107, 16, 16, 0.12);
}

.button:disabled {
    opacity: 0.65;
}

.btn-ripple {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.7s ease-out forwards;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(16);
        opacity: 0;
    }
}

.section {
    padding: 80px 0;
    border-top: 1px solid rgba(180, 58, 22, 0.18);
    scroll-margin-top: 120px;
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--ember);
}

.section-header,
.section-copy {
    max-width: 700px;
    margin-bottom: 48px;
}

.section-copy.center,
.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section h2,
.section-header h2,
.page-hero h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--pale);
    margin-bottom: 16px;
}

.section-copy p,
.section-header p,
.page-hero p {
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--ghost);
    font-style: italic;
}

.lore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 60px;
}

.lore-card,
.team-card,
.archive-card {
    position: relative;
    overflow: hidden;
}

.lore-card {
    padding: 36px 28px;
    background: linear-gradient(160deg, rgba(22, 15, 28, 0.8) 0%, rgba(13, 10, 20, 0.6) 100%);
    border: 1px solid rgba(180, 58, 22, 0.15);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.lore-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blood), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lore-card:hover {
    border-color: rgba(180, 58, 22, 0.4);
}

.lore-card:hover::before {
    opacity: 1;
}

.lore-icon {
    font-size: 2rem;
    color: var(--ember);
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 0 20px rgba(180, 58, 22, 0.6);
    animation: icon-glow 3s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% { text-shadow: 0 0 16px rgba(180, 58, 22, 0.5); color: var(--ember); }
    50% { text-shadow: 0 0 28px rgba(201, 162, 100, 0.6); color: var(--gold); }
}

.lore-card h3,
.team-card h3,
.archive-copy h3,
.teaser-copy-block h3 {
    font-family: "Cinzel", serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 600;
}

.lore-card p,
.team-bio,
.archive-copy p,
.teaser-copy-block p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ghost);
}

.lore-subtext {
    margin-top: 12px;
    font-style: italic;
    color: var(--ember);
}

.twin-split {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.twin-half {
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(180, 58, 22, 0.6);
}

.twin-half.left {
    color: var(--ember);
}

.twin-half.right {
    color: var(--gold-dim);
}

.about-quote {
    margin: 0 0 60px;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(107, 16, 16, 0.12) 0%, rgba(6, 4, 10, 0) 100%);
    border-left: 2px solid var(--blood);
    position: relative;
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 24px;
    font-family: "Cinzel", serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(107, 16, 16, 0.3);
}

.about-quote blockquote p {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--pale);
    max-width: 80ch;
}

.studio-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 24px;
}

.fact-num {
    display: block;
    font-family: "Share Tech Mono", monospace;
    font-size: 0.78rem;
    color: var(--ember);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.fact h4 {
    font-family: "Cinzel", serif;
    font-size: 1.5rem;
    color: var(--pale);
    margin-bottom: 10px;
    font-weight: 600;
}

.fact p {
    font-size: 1.3rem;
    line-height: 1.75;
    color: var(--ghost);
}

.teaser-frame {
    position: relative;
    margin-top: 28px;
    padding: 18px;
    background: rgba(6, 4, 10, 0.5);
    border: 1px solid rgba(180, 58, 22, 0.2);
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--ember);
    border-style: solid;
}

.fc-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.fc-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.fc-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.fc-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.teaser-coming-soon {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
    padding: 34px;
    text-align: center;
    border: 1px solid rgba(180, 58, 22, 0.18);
    background:
        linear-gradient(180deg, rgba(13, 10, 20, 0.6), rgba(6, 4, 10, 0.88)),
        url("images/background2.jpg") center / cover no-repeat;
    overflow: hidden;
}

.teaser-coming-soon::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201, 162, 100, 0.14);
}

.teaser-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 10px 14px;
    font-family: "Share Tech Mono", monospace;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #180f08;
    background: linear-gradient(180deg, #c9a264 0%, #b78431 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.teaser-orbit {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 100, 0.12);
    box-shadow:
        0 0 0 22px rgba(201, 162, 100, 0.04),
        0 0 80px rgba(176, 58, 22, 0.14);
}

.teaser-play {
    position: relative;
    z-index: 1;
    width: 92px;
    height: 92px;
    margin-bottom: 26px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 100, 0.42);
    box-shadow:
        0 0 0 18px rgba(201, 162, 100, 0.05),
        0 0 60px rgba(176, 58, 22, 0.2);
}

.teaser-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-38%, -50%);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid var(--gold);
}

.teaser-copy-block {
    position: relative;
    z-index: 1;
    max-width: 34rem;
}

.teaser-copy-block .mono {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--ember);
}

.teaser-caption {
    margin-top: 16px;
    text-align: center;
    color: var(--ghost);
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.team-card {
    padding: 28px 22px;
    background: rgba(13, 10, 20, 0.7);
    border: 1px solid rgba(180, 58, 22, 0.12);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.team-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--blood), var(--ember), var(--blood));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.team-card:hover {
    border-color: rgba(180, 58, 22, 0.3);
    background: rgba(22, 15, 28, 0.9);
}

.team-card:hover::after {
    transform: scaleX(1);
}

.dossier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.dossier-id {
    color: var(--ember);
    font-size: 0.76rem;
}

.dossier-stamp {
    font-family: "Share Tech Mono", monospace;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    color: #3a8a3a;
    border: 1px solid rgba(58, 138, 58, 0.4);
    padding: 2px 6px;
    animation: stamp-flicker 5s ease-in-out infinite;
}

@keyframes stamp-flicker {
    0%, 88%, 100% { opacity: 1; }
    90% { opacity: 0.3; }
    92% { opacity: 1; }
}

.team-card h3 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.team-role {
    display: block;
    font-family: "Share Tech Mono", monospace;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    color: var(--ember);
    margin-bottom: 14px;
}

.team-bio {
    margin-bottom: 22px;
    font-style: italic;
}

.subscribe-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.subscribe-section .section-copy {
    margin-bottom: 0;
}

.subscribe-panel {
    padding-top: 60px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe-form input {
    width: 100%;
    height: 54px;
    padding: 0 20px;
    background: rgba(13, 10, 20, 0.8);
    border: 1px solid var(--vein);
    color: var(--pale);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05rem;
    font-style: italic;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-form input::placeholder {
    color: var(--ghost);
}

.subscribe-form input:focus {
    border-color: var(--ember);
    box-shadow: 0 0 20px rgba(176, 58, 22, 0.2);
}

.subscribe-form .button-primary {
    width: 100%;
}

.form-message {
    margin-top: 14px;
    font-style: italic;
}

.form-message.success {
    color: #6dcc8a;
}

.form-message.error {
    color: #e06060;
}

.social-section {
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Cinzel", serif;
    font-size: 0.96rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ghost);
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

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

.social-icon {
    width: 1.5em;
    height: 1.5em;
    fill: currentColor;
}

.site-footer {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), var(--content-width));
    margin: 0 auto 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(180, 58, 22, 0.18);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--ghost);
}

.footer-sep {
    color: var(--blood);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.inner-shell {
    padding-top: 40px;
}

.page-hero {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
    padding: 40px 0 0;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.archive-card {
    display: block;
    background: rgba(13, 10, 20, 0.8);
    border: 1px solid rgba(180, 58, 22, 0.15);
    transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.archive-card:hover {
    transform: translateY(-5px) rotate(-0.3deg);
    border-color: rgba(180, 58, 22, 0.45);
    box-shadow: 0 12px 40px rgba(107, 16, 16, 0.35), 0 0 0 1px rgba(180, 58, 22, 0.2);
}

.card-tape {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 16px;
    background: rgba(201, 162, 100, 0.18);
    border-bottom: 1px solid rgba(201, 162, 100, 0.25);
    z-index: 2;
}

.card-stamp {
    padding: 10px 14px 6px;
    font-size: 0.72rem;
    color: var(--ember);
    letter-spacing: 0.16em;
}

.archive-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: grayscale(0.4) sepia(0.15);
    transition: filter 0.4s ease;
}

.archive-card:hover img {
    filter: grayscale(0.1) sepia(0.05);
}

.archive-copy {
    padding: 18px 18px 14px;
}

.card-arrow {
    position: absolute;
    bottom: 14px;
    right: 18px;
    color: var(--ember);
    font-size: 1.2rem;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.archive-card:hover .card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.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;
}

@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 40px;
    }

    .lore-grid,
    .studio-facts {
        grid-template-columns: 1fr;
    }

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

    .showcase-poster {
        min-height: 480px;
    }
}

@media (max-width: 820px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .subscribe-section,
    .archive-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .social-links,
    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
    }

    .teaser-coming-soon {
        min-height: 380px;
        padding: 26px;
    }
}

@media (max-width: 560px) {
    .page-shell,
    .site-header,
    .site-footer {
        width: min(calc(100% - 20px), var(--content-width));
    }

    .site-header {
        margin-top: 10px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-mark,
    .brand-eye-wrap {
        width: 52px;
        height: 52px;
    }

    .showcase-poster {
        min-height: 420px;
        padding: 18px;
    }

    .poster-body h2 {
        font-size: 2.7rem;
    }

    .teaser-coming-soon {
        min-height: 320px;
        padding: 22px;
    }

    .teaser-badge {
        top: 16px;
        right: 16px;
    }

    .teaser-orbit {
        width: 230px;
        height: 230px;
    }

    .about-quote {
        padding: 24px 20px;
    }
}

@media (pointer: coarse) {
    .cursor-aura,
    .cursor-glow,
    .cursor-ring,
    .cursor-core {
        display: none;
    }
}
