      :root {
        --cream: #f5f0eb;
        --charcoal: #1a1a1a;
        --gold: #b8960c;
        --max-width: 1120px;
      }

      * {
        box-sizing: border-box;
      }

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

      body {
        margin: 0;
        min-height: 100dvh;
        font-family: "Inter", sans-serif;
        font-weight: 400;
        color: var(--charcoal);
        background-color: var(--cream);
        line-height: 1.6;
        letter-spacing: 0.01em;
      }

      h1,
      h2,
      h3 {
        margin: 0;
      }

      p {
        margin: 0;
      }

      a {
        color: inherit;
      }

      .page {
        width: min(100% - 3rem, var(--max-width));
        margin: 0 auto;
      }

      .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(245, 240, 235, 0.9);
        border-bottom: 1px solid rgba(26, 26, 26, 0.1);
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 320ms ease, transform 320ms ease;
      }

      .site-nav.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      .site-nav-inner {
        width: min(100% - 2.5rem, var(--max-width));
        margin: 0 auto;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }

      .site-nav-brand img {
        width: 32px;
        height: auto;
        display: block;
      }

      .site-nav-links {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .site-nav-links a {
        font-family: "Inter", sans-serif;
        font-size: 0.85rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.28em;
        text-decoration: none;
        color: var(--charcoal);
      }

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

      .site-nav-toggle {
        display: none;
      }

      section,
      footer {
        padding: 7rem 0;
      }

      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        padding: 4rem 0;
        background: radial-gradient(circle, #f5f0eb 0%, #ede7e0 100%);
      }

      .hero-content {
        max-width: 1120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-5vh);
        position: relative;
        z-index: 1;
      }

      .hero-graphic {
        width: clamp(240px, 18vw, 340px);
        height: auto;
        display: block;
        margin: 0 auto 1.2rem;
        opacity: 0;
        transform: translateY(10px) scale(0.985);
        animation: heroIconFade 1s ease forwards;
      }

      .hero h1 {
        font-size: clamp(2.5rem, 8vw, 5.8rem);
        font-weight: 700;
        font-family: "Vesper Libre", "Playfair Display", serif;
        line-height: 0.88;
        letter-spacing: 0.02em;
        text-align: center;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(10px);
        animation: heroTitleFade 760ms ease forwards;
        animation-delay: 520ms;
      }

      .tagline {
        margin-top: 0.6rem;
        font-size: clamp(0.92rem, 1.55vw, 1.08rem);
        font-family: "Inter", sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.28em;
        line-height: 1.35;
        color: var(--charcoal);
        opacity: 0;
        transform: translateY(10px);
        animation: heroTaglineFade 0.6s ease forwards;
        animation-delay: 1.58s;
      }

      .hero-scroll-indicator {
        position: absolute;
        left: 50%;
        bottom: 1.5rem;
        transform: translateX(-50%);
        opacity: 0.4;
        transition: opacity 320ms ease;
        pointer-events: none;
      }

      .hero-scroll-indicator.is-hidden {
        opacity: 0;
      }

      .hero-scroll-chevron {
        display: block;
        width: 14px;
        height: 14px;
        animation: chevronBounce 1.8s ease-in-out infinite;
      }

      .hero-scroll-chevron::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        border-right: 2px solid var(--charcoal);
        border-bottom: 2px solid var(--charcoal);
        transform: rotate(45deg);
      }

      @keyframes heroIconFade {
        from {
          opacity: 0;
          transform: translateY(10px) scale(0.985);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      @keyframes heroTitleFade {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes heroTaglineFade {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes chevronBounce {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(8px);
        }
      }

      .section-title {
        text-transform: uppercase;
        font-size: 0.85rem;
        font-family: "Inter", sans-serif;
        font-weight: 700;
        letter-spacing: 0.3em;
        color: var(--gold);
        margin-bottom: 0.5rem;
      }

      .section-headline {
        font-family: "Playfair Display", serif;
        font-size: clamp(1.4rem, 3vw, 1.8rem);
        font-weight: 600;
        color: var(--charcoal);
        margin: 0 0 0.3rem;
      }

      .accent-line {
        width: 76px;
        height: 2px;
        background: var(--gold);
        margin-bottom: 2.2rem;
      }

      .about-layout {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2.2rem;
        align-items: center;
      }

      .about-copy p {
        max-width: 720px;
        font-size: 1.05rem;
      }

      .about-graphic {
        width: min(100%, 480px);
        justify-self: end;
        display: block;
        mix-blend-mode: multiply;
        clip-path: inset(100% 0 0 0);
        opacity: 0;
        transform: translateY(var(--about-parallax-y, 0px));
        will-change: transform;
      }

      .about.in-view .about-graphic {
        animation: aboutPigeonReveal 1.5s ease-out forwards;
        animation-delay: 0.25s;
      }

      @keyframes aboutPigeonReveal {
        from {
          clip-path: inset(100% 0 0 0);
          opacity: 0;
        }
        to {
          clip-path: inset(0 0 0 0);
          opacity: 1;
        }
      }

      .forum-link {
        position: relative;
        display: inline-block;
      }

      .forum-link::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: rgba(245, 240, 235, 0.8);
        transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      }

      .forum-link:hover::after {
        width: 100%;
      }

      .forum-link {
        display: inline-block;
        text-decoration: none;
        color: inherit;
        text-align: left;
        max-width: 500px;
        margin: 0;
        width: 100%;
      }

      .forum-section {
        background: radial-gradient(
            circle at center,
            rgba(26, 26, 26, 0.56) 0%,
            rgba(26, 26, 26, 0.38) 34%,
            rgba(26, 26, 26, 0.22) 58%,
            rgba(26, 26, 26, 0.08) 100%
          ),
          url("images/forum-bg.jpeg");
        background-position: center;
        background-size: cover;
        color: var(--cream);
        padding: 0;
        text-align: left;
        min-height: 80vh;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
      }

      .forum-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0) 0%,
          rgba(0, 0, 0, 0) 60%,
          rgba(0, 0, 0, 0.6) 100%
        );
        pointer-events: none;
      }

      .forum-section .section-headline,
      .forum-section .section-title {
        color: var(--cream);
      }

      .forum-section .page {
        width: min(100% - 3rem, var(--max-width));
        display: flex;
        justify-content: flex-start;
        padding-left: 3rem;
        padding-bottom: 3.5rem;
        position: relative;
        z-index: 1;
      }

      .forum-link .accent-line {
        transition: width 260ms ease;
        margin-left: 0;
        margin-right: 0;
      }

      .forum-link:hover .accent-line,
      .forum-link:focus-visible .accent-line {
        width: 118px;
      }

      .forum-description {
        max-width: 500px;
        font-size: 1.18rem;
        color: rgba(245, 240, 235, 0.82);
        margin: 0;
      }

      .forum-coming-soon {
        margin: 1.6rem 0 0;
        font-size: 0.72rem;
        letter-spacing: 0.32em;
        text-transform: uppercase;
        color: rgba(245, 240, 235, 0.38);
        padding-top: 1.2rem;
        border-top: 1px solid rgba(245, 240, 235, 0.18);
        max-width: 500px;
      }

      .live-events-coming-soon {
        margin: 1.2rem 0 0;
        font-size: 0.72rem;
        letter-spacing: 0.32em;
        text-transform: uppercase;
        color: rgba(26, 26, 26, 0.3);
        padding-top: 1.2rem;
        border-top: 1px solid rgba(26, 26, 26, 0.12);
        max-width: 500px;
      }

      .movies-section {
        background: var(--cream);
      }

      .movies-section .accent-line {
        margin-bottom: 1.15rem;
      }

      .movies-anchor {
        text-align: center;
        margin-bottom: 1.8rem;
        padding: 0 3%;
        position: relative;
        height: 0;
        padding-bottom: 44.6%;
        overflow: visible;
      }

      .movies-anchor.flicker {
        animation: projectorFlicker 450ms ease;
      }

      @keyframes projectorFlicker {
        0% {
          opacity: 1;
        }
        15% {
          opacity: 0.1;
        }
        30% {
          opacity: 0.7;
        }
        45% {
          opacity: 0.2;
        }
        60% {
          opacity: 1;
        }
      }

      .movies-anchor img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        display: block;
        object-fit: cover;
        transition: opacity 200ms ease;
      }

      .movies-anchor img.is-transitioning {
        opacity: 0.85;
      }

      .movies-anchor-title {
        position: absolute;
        bottom: 8%;
        left: 5%;
        font-family: "Vesper Libre", serif;
        font-size: clamp(1rem, 1.8vw, 1.3rem);
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--charcoal);
        text-align: left;
        text-shadow: none;
        z-index: 2;
        opacity: 0;
        transform: perspective(600px) rotateY(-18deg) skewY(-3deg)
          translateY(-4px);
        transition: opacity 350ms ease, transform 350ms ease, text-shadow 350ms ease;
        pointer-events: none;
      }

      .movies-anchor-title.is-visible {
        opacity: 1;
        transform: perspective(600px) rotateY(-18deg) skewY(-3deg)
          translateY(0);
        text-shadow: 0 0 20px rgba(184, 150, 12, 0.3),
          0 0 40px rgba(184, 150, 12, 0.1);
      }

      .movies-feature-link {
        margin-top: 0.9rem;
        display: inline-block;
        font-family: "Inter", sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--gold);
        text-decoration: none;
      }

      .movies-projects {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 3rem;
      }

      .movies-project {
        position: relative;
        padding-left: 1rem;
      }

.movies-project-poster {
  display: none;
}

.movies-project-poster.aliens-poster {
  object-position: 70% center;
}

      .movies-project::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gold);
        opacity: 0;
        transition: opacity 220ms ease;
      }

      .movies-project.featured::before {
        opacity: 1;
      }

      .movies-projects:hover .movies-project.featured::before,
      .movies-projects:focus-within .movies-project.featured::before {
        opacity: 0;
      }

      .movies-project:hover::before,
      .movies-project:focus-within::before {
        opacity: 1;
      }

      .movies-project h4 {
        margin: 0;
        font-family: "Vesper Libre", serif;
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.12;
        color: var(--charcoal);
      }

      .movies-title-link {
        color: inherit;
        text-decoration: none;
      }

      .movies-project p {
        margin-top: 0.35rem;
        font-size: 0.9rem;
        color: rgba(26, 26, 26, 0.65);
        line-height: 1.5;
      }

      #series.page {
        width: 100vw;
        margin-left: calc(50% - 50vw);
      }

      #series {
        background: #1a1a1a;
        padding: 5rem 0;
      }

      .series-stage {
        width: min(100% - 4rem, 1000px);
        margin: 0 auto;
      }

      .series-book {
        display: none;
      }

      .series-header {
        margin-bottom: 2.5rem;
      }

      .series-header .section-title {
        color: var(--gold);
        font-size: 0.72rem;
        margin-bottom: 0.2rem;
      }

      .series-header .section-headline {
        font-family: "Playfair Display", serif;
        color: var(--cream);
        font-size: clamp(1.6rem, 2.5vw, 2.2rem);
        margin-bottom: 0.4rem;
      }

      .series-header .section-headline::first-letter {
        font-size: 2.2em;
        float: left;
        line-height: 0.75;
        margin-right: 0.06em;
        color: var(--gold);
        font-family: "Playfair Display", serif;
      }

      .series-book-accent {
        display: block;
        margin-bottom: 0.2rem;
      }

      .series-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
      }

      .series-page-left {
        position: static;
        width: auto;
        height: auto;
        display: grid;
        gap: 2.5rem;
        align-content: start;
      }

      .series-left-main {
        margin-top: 0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .series-left-main img {
        width: 100%;
        max-width: 320px;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center 30%;
        display: block;
        border: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        filter: none;
        mix-blend-mode: normal;
        opacity: 1;
      }

      .series-left-main h4 {
        margin: 0.65rem 0 0;
        font-family: "Playfair Display", serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--cream);
        text-shadow: none;
        border-bottom: 1px solid rgba(245, 240, 235, 0.15);
        padding-bottom: 0.3rem;
        display: inline-block;
      }

      .series-left-main p {
        margin-top: 0.5rem;
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.55;
        color: rgba(245, 240, 235, 0.75);
        max-width: none;
        text-align: left;
      }

      .series-page-right {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        box-sizing: border-box;
        display: grid;
        gap: 2.5rem;
        align-content: start;
      }

      .series-page-right .series-right-item:first-child {
        margin-top: 0;
      }

      .series-right-item img {
        width: 100%;
        max-width: 320px;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        display: block;
        border: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        filter: none;
        mix-blend-mode: normal;
        opacity: 1;
      }

      .series-right-item h4 {
        margin: 0.65rem 0 0;
        font-family: "Playfair Display", serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--cream);
        text-shadow: none;
        border-bottom: 1px solid rgba(245, 240, 235, 0.15);
        padding-bottom: 0.3rem;
        display: inline-block;
      }

      .series-right-item p {
        margin-top: 0.5rem;
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.55;
        color: rgba(245, 240, 235, 0.75);
        max-width: none;
        text-align: left;
      }

      .series-page-left .series-left-main:first-of-type::after,
      .series-page-right .series-right-item:first-of-type::after {
        display: none;
      }

      .series-release-date {
        display: block;
        margin-top: 0.55rem;
        font-size: 0.65rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        opacity: 0.85;
      }

      .series-right-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .series-coming-soon-item {
        pointer-events: none;
      }

      .series-coming-soon-item:hover,
      .series-coming-soon-item:focus-within {
        transform: none;
        box-shadow: none;
      }

      .series-coming-soon-image {
        width: 100%;
        max-width: 320px;
        aspect-ratio: 4 / 3;
        background: rgba(245, 240, 235, 0.05);
        border: 1px dashed rgba(245, 240, 235, 0.12);
        display: block;
      }

      .series-coming-soon-title {
        margin: 0.65rem 0 0;
        font-family: "Playfair Display", serif;
        font-size: 1rem;
        font-weight: 700;
        color: rgba(245, 240, 235, 0.35);
        border-bottom: 1px solid rgba(245, 240, 235, 0.08);
        padding-bottom: 0.3rem;
        display: inline-block;
        letter-spacing: 0.05em;
      }

      .series-coming-soon-label {
        display: block;
        margin-top: 0.55rem;
        font-size: 0.65rem;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: rgba(245, 240, 235, 0.25);
        margin: 0.45rem 0 0;
      }

      .series-item-link {
        display: block;
        color: inherit;
        text-decoration: none;
      }

      .series-left-main:hover,
      .series-left-main:focus-within,
      .series-right-item:hover,
      .series-right-item:focus-within {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
      }

      .series-left-main:hover h4,
      .series-left-main:focus-within h4,
      .series-right-item:hover h4,
      .series-right-item:focus-within h4 {
        color: #b8960c;
      }

      .series-item-link:hover {
        cursor: pointer;
      }

      .series-image-placeholder {
        width: 38%;
        aspect-ratio: 4 / 3;
        background: rgba(26, 26, 26, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Inter", sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: rgba(26, 26, 26, 0.72);
        text-transform: uppercase;
      }

      .series-page-left::before,
      .series-page-right::after {
        content: none;
      }

      .contact.page {
        width: 100vw;
        margin-left: calc(50% - 50vw);
      }

      .contact {
        border-top: 1px solid rgba(26, 26, 26, 0.1);
        padding-top: 5rem;
        padding-bottom: 2.5rem;
        text-align: left;
        background-color: var(--cream);
        background-image: url("images/faded-flag.jpeg");
        background-size: cover;
        background-position: center;
        color: var(--charcoal);
        position: relative;
        overflow: hidden;
      }

      .contact-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: min(52%, 720px);
        margin-left: clamp(2rem, 8vw, 10rem);
        margin-right: 0;
        position: static;
      }

      .contact-foreground {
        position: absolute;
        right: -2%;
        bottom: 0;
        height: 94%;
        width: auto;
        pointer-events: none;
        z-index: 1;
      }

      .contact-foreground img {
        height: 100%;
        width: auto;
        display: block;
        object-fit: contain;
        object-position: right bottom;
      }

      .contact-title {
        margin-bottom: 0.45rem;
        position: relative;
        z-index: 3;
      }

      .contact .accent-line {
        margin-bottom: 1.2rem;
        position: relative;
        z-index: 3;
      }

      .contact-email {
        margin-top: 1.2rem;
        font-family: "Inter", sans-serif;
        font-size: 1.05rem;
        color: rgba(26, 26, 26, 0.9);
        max-width: min(44ch, 34vw);
        opacity: 0;
        transform: translateY(8px);
        position: relative;
        z-index: 3;
      }

      .contact-divider {
        width: min(50vw, 620px);
        height: 1px;
        background: rgba(26, 26, 26, 0.14);
        margin: 2rem 0 0;
  position: relative;
  z-index: 3;
      }

      .contact-copyright {
        margin-top: 4.25rem;
        font-size: 0.8rem;
        font-family: "Inter", sans-serif;
        color: var(--charcoal);
        max-width: none;
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 3;
        opacity: 0;
        transform: translateY(8px);
      }

      .contact-label {
        text-transform: lowercase;
        letter-spacing: 0.04em;
        color: rgba(26, 26, 26, 0.72);
      }

      .contact a {
        text-decoration: none;
        color: var(--gold);
        border-bottom: 1px solid transparent;
        transition: border-color 220ms ease;
      }

      .contact a:hover {
        border-color: var(--gold);
      }

      .contact.contact-in-view .contact-email {
        animation: contactFadeUp 700ms ease forwards;
        animation-delay: 0.2s;
      }

      .contact.contact-in-view .contact-copyright {
        animation: contactCopyrightFade 700ms ease forwards;
        animation-delay: 1s;
      }

      @keyframes contactFadeUp {
        from {
          opacity: 0;
          transform: translateY(8px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes contactCopyrightFade {
        from {
          opacity: 0;
          transform: translateY(8px);
        }
        to {
          opacity: 0.4;
          transform: translateY(0);
        }
      }

      .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 700ms ease, transform 700ms ease;
      }

      .reveal.in-view {
        opacity: 1;
        transform: translateY(0);
      }

      @media (max-width: 860px) {
        section,
        footer {
          padding: 5.2rem 0;
        }

        .hero-content {
          transform: translateY(-5vh);
        }

        #series {
          background: #1a1a1a;
          padding: 3rem 1.5rem;
        }

        .series-stage {
          width: 100%;
        }

        .series-book {
          display: none;
        }

        .series-cards {
          grid-template-columns: 1fr;
          gap: 0;
        }

        .series-page-left,
        .series-page-right,
        .series-right-item {
          position: static;
          width: 100%;
        }

        .series-page-left {
          display: grid;
          gap: 2rem;
        }

        .series-page-right {
          margin-top: 2rem;
          display: grid;
          gap: 2rem;
          padding-left: 0;
          height: auto;
        }

        .series-left-main img,
        .series-right-item img {
          width: 100%;
          max-width: 280px;
          mix-blend-mode: normal;
          filter: none;
          opacity: 1;
        }

        .series-header .section-title {
          color: #b8960c;
        }

        .series-header .section-headline {
          color: var(--cream);
        }

        .series-left-main h4,
        .series-right-item h4 {
          color: var(--cream);
        }

        .series-left-main p,
        .series-right-item p {
          color: rgba(245, 240, 235, 0.75);
        }

        .series-page-left::before,
        .series-page-right::after {
          content: none;
        }

        .series-book-accent {
          display: block;
          margin-bottom: 0.6rem;
        }

        .movies-anchor {
          margin-bottom: 3rem;
        }

        .movies-anchor img {
          width: 100%;
          max-width: none;
          display: block;
          margin: 0 auto;
        }

        .movies-projects {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 1.6rem;
        }

        .movies-project-poster {
          display: block;
          width: 100%;
          max-width: 280px;
          aspect-ratio: 2 / 3;
          object-fit: cover;
          object-position: top;
          border-radius: 2px;
          margin-bottom: 0.6rem;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .site-nav-inner {
          width: min(100% - 1.5rem, var(--max-width));
          min-height: 52px;
          gap: 0.8rem;
        }

        .site-nav-links {
          gap: 0.6rem;
          flex-wrap: wrap;
          justify-content: flex-end;
        }

        .site-nav-links a {
          font-size: 0.72rem;
          letter-spacing: 0.2em;
        }

        .about-layout {
          grid-template-columns: 1fr;
          gap: 1.4rem;
        }

        .about-graphic {
          justify-self: start;
          width: min(100%, 360px);
        }

        .forum-section {
          background: radial-gradient(
              circle at center,
              rgba(26, 26, 26, 0.64) 0%,
              rgba(26, 26, 26, 0.5) 48%,
              rgba(26, 26, 26, 0.34) 100%
            ),
            url("images/forum-bg.jpeg");
          background-position: center;
          background-size: cover;
          text-align: left;
          min-height: 72vh;
        }

        .forum-section .page {
          justify-content: flex-start;
          padding-left: 1.2rem;
          padding-bottom: 2.6rem;
        }

        .forum-link {
          text-align: left;
          margin: 0;
        }

        .forum-description {
          margin: 0;
        }

        .contact-email,
        .contact-copyright {
          max-width: 100%;
        }

        .contact-divider {
          width: 100%;
        }

        .contact-inner {
          width: min(62%, 620px);
          margin-left: clamp(1.5rem, 5vw, 3rem);
        }
      }

      @media (max-width: 480px) {
        .movies-projects {
          grid-template-columns: 1fr;
        }

        .movies-project-poster {
          max-width: 100%;
        }

        .forum-section {
          min-height: 60vh;
        }

        .forum-section .page {
          padding-left: 1rem;
          padding-bottom: 2rem;
        }
      }

      @media (max-width: 768px) {
        .site-nav-inner {
          position: relative;
        }

        .site-nav-toggle {
          display: inline-flex;
          width: 24px;
          height: 24px;
          background: transparent;
          border: 0;
          padding: 0;
          align-items: center;
          justify-content: center;
          cursor: pointer;
        }

        .site-nav-toggle-icon {
          display: inline-flex;
          flex-direction: column;
          gap: 4px;
          width: 24px;
        }

        .site-nav-toggle-icon span {
          display: block;
          width: 24px;
          height: 2px;
          background: var(--charcoal);
        }

        .site-nav-links {
          display: none;
        }

        .site-nav.nav-open .site-nav-links {
          display: flex;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          flex-direction: column;
          align-items: flex-start;
          background: var(--cream);
          padding: 1rem 1.5rem;
          gap: 0;
          border-bottom: 1px solid rgba(26, 26, 26, 0.1);
        }

        .site-nav.nav-open .site-nav-links a {
          width: 100%;
          padding: 0.75rem 0;
        }

        .contact {
          text-align: center;
        }

        .contact-inner {
          width: min(100% - 2.2rem, 560px);
          margin: 0 auto;
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        .contact-title {
          order: 1;
        }

        .contact .accent-line {
          order: 2;
        }

        .contact-email,
        .contact-copyright {
          max-width: 100%;
          text-align: center;
        }

        .contact-email {
          order: 4;
        }

        .contact-foreground {
          position: static;
          width: 100%;
          height: auto;
          text-align: center;
          margin-top: 0.5rem;
          margin-bottom: 0.5rem;
          opacity: 0.35;
          z-index: 1;
          pointer-events: none;
          order: 3;
        }

        .contact-foreground img {
          height: auto;
          width: min(40%, 160px);
          margin: 0 auto;
        }

        .contact-divider {
          order: 5;
          margin-top: 1.6rem;
        }
      }

      @media (min-width: 861px) and (max-width: 1100px) {
        .series-left-main img,
        .series-right-item img {
          width: 45%;
        }

        .series-left-main h4,
        .series-right-item h4 {
          font-size: clamp(0.72rem, 0.95vw, 0.85rem);
        }

        .series-left-main p,
        .series-right-item p {
          font-size: 0.64rem;
        }
      }
