/* Global Variables */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Syne:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
    --color-bg: #FFF6BB;
    --color-text: #000000;
    --color-accent: #FF941A;
    --color-dark-text: #030000;

    /* PP Neue Montreal Mono (commercial) with Space Mono fallback */
    --font-heading: 'PP Neue Montreal Mono', 'Space Mono', monospace;
    --font-body: 'PP Neue Montreal Mono', 'Space Mono', monospace;
    --font-nav: 'PP Neue Montreal Mono', 'Space Mono', monospace;

    --u-container: 1440px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent);
}

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

/* Layout Utility */
.container {
    max-width: var(--u-container);
    margin: 0 auto;
    position: relative;
    padding: 0 22px;
    /* Matching Figma padding */
}

/* Announcement Bar — above header */
.announcement-bar {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: var(--color-bg);
    height: 50px;
    position: relative;
    font-family: var(--font-nav);
    font-weight: 350;
    font-size: 16px;
    line-height: 19px;
}

.announcement-bar-inner {
    max-width: 1470px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.announcement-text {
    font-weight: 350;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    white-space: nowrap;
}

.announcement-link {
    font-weight: 350;
    font-size: 16px;
    line-height: 19px;
    color: #FF941A;
    text-decoration: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.announcement-link:hover {
    opacity: 0.7;
    color: #FF941A;
}

/* Header / Nav — Figma: Rectangle 5, #000000, 87px */
.site-header {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #000000;
    height: 87px;
    display: flex;
    align-items: center;
    z-index: 100;
    position: relative;
    font-family: var(--font-nav);
    margin-bottom: 20px;
}

/* Single nav row spanning full width */
.header-nav-row {
    width: 100%;
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Center logo in the navbar */
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-logo-img {
    width: 106px;
    height: 41px;
    display: block;
    object-fit: contain;
    mix-blend-mode: difference;
}

/* Navbar logo dance — smooth wobble */
@keyframes danceLZ {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    15% {
        transform: rotate(-2deg) translate(-1px, 1px);
    }

    30% {
        transform: rotate(1.5deg) translate(1px, -0.5px);
    }

    45% {
        transform: rotate(-1deg) translate(-0.5px, 0.5px);
    }

    60% {
        transform: rotate(2deg) translate(1px, -1px);
    }

    75% {
        transform: rotate(-1.5deg) translate(-1px, 0.5px);
    }

    90% {
        transform: rotate(0.5deg) translate(0.5px, -0.5px);
    }

    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}

/* Hero logo dance — smooth larger wobble */
.main-logo-image {
    animation: none;
}

@keyframes danceHero {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    15% {
        transform: rotate(-2.5deg) translate(-2px, 2px);
    }

    30% {
        transform: rotate(2deg) translate(2px, -1px);
    }

    45% {
        transform: rotate(-1.5deg) translate(-1px, 1px);
    }

    60% {
        transform: rotate(2deg) translate(1px, -2px);
    }

    75% {
        transform: rotate(-1.5deg) translate(-1.5px, 1px);
    }

    90% {
        transform: rotate(0.5deg) translate(0.5px, -0.5px);
    }

    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}

/* Nav Lists */
.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

/* All nav links inside the green bar */
.nav-list a {
    font-family: var(--font-nav);
    text-transform: uppercase;
    font-size: 16px;
    line-height: 10px;
    letter-spacing: -0.06em;
    font-weight: 500;
    color: #FFEC73;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-list a:hover {
    color: #FFFFFF;
    opacity: 0.7;
}

/* Subscribe button — Figma: Rectangle 1 */
.nav-subscribe-btn {
    background: #FF941A;
    color: #000000 !important;
    font-family: var(--font-nav);
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 19px;
    letter-spacing: -0.09em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 47px;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.nav-subscribe-btn:hover {
    opacity: 0.85;
    color: #000000 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        height: auto;
        padding: 10px 0;
    }

    .header-nav-row {
        padding: 0 15px;
        gap: 10px;
    }

    .nav-list {
        gap: 15px;
    }

    .nav-list a {
        font-size: 13px;
    }

    .header-logo-img {
        max-width: 80px;
    }

    .nav-subscribe-btn {
        width: 75px;
        height: 38px;
        font-size: 13px !important;
    }
}

/* Section Labels (e.g., FEATURED) */
.section-label-container {
    max-width: 1440px;
    margin: 100px auto 40px;
    padding: 0 22px;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Post Feed Grid */
.post-feed-section {
    max-width: 1440px;
    margin: 0 auto 150px;
    padding: 0 22px;
}

.post-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 60px 40px;
}

/* Post Card Styling */
.post-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-card-image-link {
    display: block;
    overflow: hidden;
    background: #e8dfa8;
}

.post-card-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
    filter: grayscale(1);
}

.post-card:hover .post-card-image {
    transform: scale(1.05);
    filter: grayscale(0);
}

.post-card-title {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.1;
    color: #000000;
    margin: 0;
    text-decoration: none;
}

.post-card-excerpt {
    display: none;
    /* Keep it clean like Figma */
}

/* Featured Section - Opt.1 Design (Refined with Figma Pixels) */
.featured-section {
    position: relative;
    max-width: 1440px;
    height: 1200px;
    margin: 0 auto;
    overflow: visible;
    width: 100%;
}

/* Middle Separator GIF */
.middle-separator-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background: #FFF6BB;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.featured-collage-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Texture Background */
.featured-fingerprint {
    position: absolute;
    width: 381px;
    height: 494px;
    left: 155px;
    /* From Figma snippet for similar texture? Approximated */
    top: 50px;
    z-index: 0;
    opacity: 0.8;
}

.featured-fingerprint img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

/* ---- OLD DYNAMIC GRID (commented out for future use) ----
.featured-images-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.featured-img-card {
    position: absolute;
    transform: none;
    z-index: 5;
    object-fit: cover;
}

.img-card-top {
    width: 557px;
    height: 787px;
    left: 966px;
    top: 0px;
    z-index: 2;
}

.img-card-left {
    width: 557px;
    height: 787px;
    left: 698px;
    top: 121px;
    z-index: 1;
}

.img-card-right {
    width: 557px;
    height: 787px;
    left: 1267px;
    top: 121px;
    z-index: 1;
}

.img-card-rot-1 {
    width: 305px;
    height: 431px;
    left: 500px;
    top: 205px;
    transform: rotate(90deg);
    z-index: 3;
}

.img-card-rot-2 {
    width: 431px;
    height: 305px;
    left: 671px;
    top: 638px;
    transform: none;
    z-index: 4;
}
---- END OLD DYNAMIC GRID ---- */

/* Collage Container — holds 5 individually positioned photos */
.featured-collage-img {
    position: absolute;
    right: calc(-50vw + 50%);
    top: 0;
    bottom: 0;
    width: 65vw;
    z-index: 5;
}

/* Individual collage photos */
.collage-photo {
    position: absolute;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                z-index 0s;
}

/* Photo 1: Center face closeup with phone — largest */
.collage-photo-1 {
    left: 10.6%;
    right: 43.15%;
    top: 18.73%;
    height: 66.22%;
    width: auto;
    z-index: 3;
}

/* Photo 2: Hotdogs — top right area, on top of others */
.collage-photo-2 {
    left: 42.89%;
    right: 27.42%;
    top: 0%;
    height: 42.52%;
    width: auto;
    z-index: 5;
}

/* Photo 3: Stairs — left side */
.collage-photo-3 {
    left: 0%;
    right: 73.28%;
    top: 26.93%;
    height: 38.26%;
    width: auto;
    z-index: 1;
}

/* Photo 4: Eating hotdog — right side, tall */
.collage-photo-4 {
    left: 53.83%;
    right: 0%;
    top: 29.74%;
    height: 66.12%;
    width: auto;
    z-index: 2;
}

/* Photo 5: Two guys with phone — bottom center */
.collage-photo-5 {
    left: 19.34%;
    right: 53.95%;
    top: 61.74%;
    height: 38.26%;
    width: auto;
    z-index: 4;
}

/* Clicked photo state — bring to foreground without scaling */
.collage-photo.zoomed { z-index: 10; }

/* FEATURED Label */
/* Top 1236 -> 97px (Base 1139) */
.featured-label {
    position: absolute;
    width: 118px;
    height: 71px;
    left: 99px;
    top: 97px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 32px;
    line-height: 71px;
    color: #000000;
    z-index: 10;
}

/* Featured Text Block Wrapper */
.featured-text-block {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.featured-text-block a,
.featured-text-block .funland-meta-opt1 {
    pointer-events: auto;
}

/* Funland Text Elements */
/* Title: Figma top 7101, base 6147 → 954px */
.funland-title-opt1 {
    position: absolute;
    width: 337px;
    height: auto;
    left: 101px;
    top: 954px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 45px;
    line-height: 41px;
    letter-spacing: -0.08em;
    color: #000000;
    margin: 0;
    z-index: 10;
    text-transform: none;
}

/* Desc: Figma top 7207, base 6147 → 1060px */
.funland-desc-opt1 {
    position: absolute;
    width: 428px;
    height: auto;
    left: 101px;
    top: 1060px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    margin: 0;
    z-index: 10;
}

/* Meta: Figma top 7321, base 6147 → 1174px */
.funland-meta-opt1 {
    position: absolute;
    left: 103px;
    top: 1174px;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 10;
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    font-size: 12px;
    line-height: 15px;
}


.meta-icon {
    width: 18px;
    height: 18px;
    background-color: #000000;
    /* Placeholder for Mask group */
    border-radius: 50%;
    /* Assume circle for mask? */
    margin-right: 8px;
    /* 103+18 = 121. Target 129. Gap 8. */
}

.funland-meta-opt1 .author {
    width: 96px;
    margin-right: 0;
}

.funland-meta-opt1 .divider {
    width: 3px;
    margin: 0 6px;
    font-weight: 350;
}

.funland-meta-opt1 .date {
    width: 93px;
}

/* Adjust responsive scaling */
@media (max-width: 1440px) {
    .featured-section {
        transform: scale(0.8);
        transform-origin: top center;
        margin-bottom: -240px;
    }
}

@media (max-width: 1024px) {
    .featured-section {
        transform: scale(0.68);
        transform-origin: top center;
        margin-bottom: -330px;
        overflow: hidden;
    }

    .featured-text-block {
        left: -60px;
    }

    .featured-collage-img {
        width: 55vw;
        right: calc(-50vw + 55%);
    }
}

@media (max-width: 768px) {
    .featured-section {
        transform: none;
        height: auto;
        padding: 0 20px;
        overflow: hidden;
        margin-bottom: 0;
    }

    .featured-collage-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .featured-collage-img {
        position: relative;
        right: auto;
        width: 90%;
        height: 0;
        padding-bottom: 100%;
        overflow: hidden;
        margin: 0 auto;
    }

    .collage-photo {
        /* keep absolute positions — they use % so they scale with the container */
    }

    .featured-text-block {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
    }

    .funland-title-opt1 {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        font-size: 36px;
        line-height: 34px;
        margin-bottom: 12px;
    }

    .funland-desc-opt1 {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 12px;
    }

    .funland-meta-opt1 {
        position: relative;
        left: auto !important;
        top: auto !important;
    }

    .featured-fingerprint {
        display: none;
    }
}

/* Funland Featured Section */
.funland-issue-section {
    width: 100%;
    height: 800px;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    padding: 0 100px;
    margin-bottom: 250px;
}

.funland-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.funland-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.funland-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.funland-title {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
}

.funland-description {
    font-size: 18px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
}

.funland-meta {
    font-family: var(--font-heading);
    font-size: 14px;
    color: #000000;
    display: flex;
    gap: 15px;
}

/* Footer */
.site-footer {
    background: #000000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 200px;
    padding: 0;
    height: 280px;
    position: relative;
}

.footer-content {
    position: relative;
    max-width: 1470px;
    margin: 0 auto;
    height: 100%;
}

.footer-links {
    position: absolute;
    left: 36px;
    top: 31px;
    display: flex;
    flex-direction: column;
}

.footer-links a {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 90px;
    line-height: 73px;
    letter-spacing: -0.1em;
    text-transform: uppercase;
    color: #FF941A;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
    color: #FFEC73;
}

.footer-right {
    position: absolute;
    right: 36px;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-funland-logo {
    width: 383px;
    height: 149px;
    object-fit: contain;
    margin-top: 48px;
    mix-blend-mode: difference;
}

.footer-right-bottom {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 20px;
}

.footer-icon {
    width: 76px;
    height: 76px;
    object-fit: contain;
    mix-blend-mode: plus-lighter;
}

.footer-right p {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    color: #FF941A;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .funland-issue-section {
        padding: 0 40px;
        height: 600px;
        margin-bottom: 150px;
    }

    .funland-title {
        font-size: 48px;
    }

    .funland-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .post-feed {
        grid-template-columns: 1fr;
    }

    .funland-issue-section {
        padding: 40px 20px;
        height: auto;
        min-height: 400px;
        margin-bottom: 80px;
    }

    .funland-title {
        font-size: 36px;
    }

    .funland-description {
        font-size: 14px;
    }

    .site-footer {
        height: auto;
        padding: 40px 20px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        height: auto;
    }

    .footer-links {
        position: relative;
        left: auto;
        top: auto;
        align-items: center;
        text-align: center;
    }

    .footer-links a {
        font-size: 50px;
        line-height: 50px;
    }

    .footer-right {
        position: relative;
        right: auto;
        top: auto;
        align-items: center;
    }

    .footer-funland-logo {
        width: 200px;
        height: auto;
        margin-top: 0;
    }

    .footer-right-bottom {
        margin-top: 20px;
    }

    .footer-right p {
        text-align: center;
    }
}

/* Hero Section - The Layered Look (Cleaned up) */
.hero {
    position: relative;
    padding: 60px 0 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title,
.hero-description {
    display: none;
    /* Using logo image instead */
}

/* New Intro Layout Styles */

/* Intro section — holds sticky logo + scrolling images stacked above it */
.intro-section {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow: visible;
    background: #FFF6BB;
}

/* Sticky Funland logo — stays pinned in background, vertically centered in viewport
   while user scrolls through intro. Scrolling images slide over it. */
.intro-logo-container {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.intro-logo-container img {
    display: block;
    width: 1066px;
    max-width: 85%;
    height: auto;
}

/* Hero logo image */
.main-logo-image {
    animation: none;
}

/* Scrolling image stack sits above the sticky logo.
   Negative margin-top lifts it over the 100vh sticky area,
   and scroll-content padding-top keeps images below viewport initially. */
.hero-scroll-frame {
    position: relative;
    width: 900px;
    max-width: 95%;
    margin: -100vh auto 0 auto;
    z-index: 2;
}

.hero-scroll-frame::-webkit-scrollbar {
    display: none;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    width: 100%;
    padding-top: 100vh;
    padding-bottom: 100px;
}

.flow-image {
    max-width: 90%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

/* Per-image sizes from Figma */
.flow-image.img-2 { width: 1120px; }       /* FL7ITCH 1: 1120x984 */
.flow-image.img-insert { width: 1115px; }  /* Mask group goblin: 1115x864 */
.flow-image.img-4 { width: 1122px; }       /* itchsta6: 1122x891 */
.flow-image.img-5 { width: 866px; }        /* Screenshot 3.50: 866x1175 */
.flow-image.img-6 { width: 1222px; }       /* Screenshot 3.05: 1222x969 */

/* Hover image-swap container */
.flow-image-hover-wrap {
    position: relative;
    width: 1115px;
    max-width: 90%;
    cursor: pointer;
}

.flow-image-hover-wrap .flow-image {
    width: 100%;
    max-width: 100%;
}

.flow-image-hover-wrap .hover-default {
    display: block;
    transition: opacity 0.4s ease;
}

.flow-image-hover-wrap .hover-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}

.flow-image-hover-wrap:hover .hover-default {
    opacity: 0;
}

.flow-image-hover-wrap:hover .hover-reveal {
    opacity: 1;
}






.middle-separator {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Post Grid Section */
.post-grid-section {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    height: 1800px;
    /* Spans from ~2146 to ~3900 */
    overflow: visible;
}

.post-grid-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.grid-item {
    position: absolute;
}

/* Base Offset: ~2140px */

/* Ninja Poster (Group 3) */
/* Top 2162 -> 22px, Left 176 */
.grid-ninja {
    width: 339px;
    height: 622px;
    left: 176px;
    top: 22px;
    z-index: 2;
}

/* Blue Poster (Group 8) */
/* Top 2150 -> 10px, Left 916 */
.grid-blue-poster {
    width: 339px;
    height: 622px;
    left: 916px;
    top: 10px;
    z-index: 2;
}

/* Support Image (Screenshot 2) */
/* Top 2146 -> 6px, Left 539 */
.grid-support-img {
    width: 377px;
    height: 273px;
    left: 539px;
    top: 6px;
    z-index: 1;
}

/* Support Text */
/* Top 2169 -> 29px, Left 566 */
.grid-support-text {
    position: absolute;
    width: 336px;
    height: 102px;
    left: 566px;
    top: 29px;
    font-family: var(--font-heading);
    /* ZT Bros Oskon 90s */
    font-weight: 400;
    font-size: 45px;
    line-height: 0.75;
    color: #FF941A;
    z-index: 3;
}

/* Subscribe Button (Group 7 placeholder dimensions) */
/* Top 2362 -> 222px, Left 787 */
.grid-subscribe-btn {
    position: absolute;
    width: 107px;
    height: 47px;
    left: 787px;
    top: 222px;
    background: #FF941A;
    /* Matching Figma accent button */
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    z-index: 3;
}

/* Receipt (Group 4) */
/* Top 2438 -> 298px, Left 541 */
.grid-receipt {
    width: 339px;
    height: 622px;
    left: 541px;
    top: 298px;
    z-index: 4;
}

/* Funland 2 (Group 9) */
/* Top 2842 -> 702px, Left 176 */
.grid-funland-2 {
    width: 339px;
    height: 622px;
    left: 176px;
    top: 702px;
    z-index: 2;
}

/* Fingerprint Large (Screenshot 3) */
/* Top 3128 -> 988px, Left 744 */
.grid-fingerprint-large {
    width: 523px;
    height: 739px;
    left: 744px;
    top: 988px;
    z-index: 1;
}

/* Special Guest Sticker */
/* Ellipse: Top 2996 -> 856px, Left 1085 */
.grid-sticker-container {
    position: absolute;
    width: 251px;
    height: 251px;
    left: 1085px;
    top: 856px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticker-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Sticker Text */
/* Top 3028. relative to Sticker Top 2996 is +32px */
.sticker-text {
    position: relative;
    width: 205px;
    height: auto;
    z-index: 1;
    transform: rotate(30deg);
}

/* Blog Title (On Fingerprint) */
/* Top 3754. Base 2140. Offset: 1614px */
.grid-blog-title {
    position: absolute;
    width: 249px;
    height: 111px;
    left: 463px;
    top: 1614px;
    z-index: 5;
}

/* Byline */
/* Top 3847 -> 1707px */
.grid-byline {
    position: absolute;
    width: 201px;
    height: 20px;
    left: 465px;
    top: 1707px;
    z-index: 5;
}

/* Tablet Responsive */
@media (max-width: 1200px) {
    .post-grid-section {
        height: auto;
        overflow: visible;
        padding: 40px;
    }

    .post-grid-container {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        height: auto;
    }

    .grid-item,
    .grid-support-text,
    .grid-subscribe-btn,
    .grid-sticker-container,
    .grid-blog-title,
    .grid-byline {
        position: relative;
        left: auto !important;
        top: auto !important;
    }

    .grid-item {
        width: 45% !important;
        height: auto !important;
    }

    .grid-item img {
        width: 100%;
        height: auto;
    }

    .grid-support-text {
        width: 100% !important;
        height: auto !important;
    }

    .grid-subscribe-btn {
        width: auto !important;
        height: auto !important;
    }

    .grid-sticker-container {
        position: absolute !important;
        right: 20px;
        top: 0;
    }

    .grid-blog-title,
    .grid-byline {
        display: none;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .post-grid-section {
        height: auto;
        padding: 50px 20px;
    }

    .post-grid-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .grid-item,
    .grid-support-text,
    .grid-subscribe-btn,
    .grid-sticker-container,
    .grid-blog-title,
    .grid-byline {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
        text-align: center;
    }

    .grid-sticker-container {
        width: 250px !important;
        height: 250px !important;
    }
}

/* Part 4 Section (Bottom Collage) */
.part4-section {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: 60px auto 0;
    height: 550px;
    overflow: hidden;
}

.part4-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.p4-item {
    position: absolute;
    z-index: 2;
}

/* Base Offset: ~3920px */

/* B&W Image (Left) */
/* Top 3928 -> 8px, Left 166 */
.p4-bw-girls {
    width: 557px;
    height: 787px;
    left: 166px;
    top: 8px;
    z-index: 1;
}

/* Ninja Red (Right) */
/* Top 3924 -> 4px, Left 927 */
.p4-ninja-red {
    width: 339px;
    height: 479px;
    left: 927px;
    top: 4px;
}

/* Title 1 (Right) */
/* Top 4433 -> 513px, Left 927 */
.p4-title-right {
    width: 249px;
    height: 111px;
    left: 927px;
    top: 513px;
    z-index: 5;
}

/* Byline 1 (Right) */
/* Top 4526 -> 606px, Left 929 */
.p4-byline-right {
    width: 201px;
    height: 20px;
    left: 929px;
    top: 606px;
    z-index: 5;
}

/* Title 2 (Left/Center) */
/* Top 4602 -> 682px, Left 767 */
.p4-title-left {
    width: 249px;
    height: 111px;
    left: 767px;
    top: 682px;
    z-index: 5;
}

/* Byline 2 (Left/Center) */
/* Top 4695 -> 775px, Left 769 */
.p4-byline-left {
    width: 201px;
    height: 20px;
    left: 769px;
    top: 775px;
    z-index: 5;
}

/* Wide Kubrick Image (Bottom) */
.p4-kubrick-wide {
    display: block;
    width: 1143px;
    height: 506px;
    left: 148px;
    top: 0;
    z-index: 1;
    overflow: visible;
}

.p4-kubrick-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark overlay on the kubrick image */
.kubrick-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.23), rgba(0, 0, 0, 0.23));
    z-index: 2;
    pointer-events: none;
}

/* Rotated title text on the image */
.kubrick-title {
    position: absolute;
    width: 353px;
    right: 45px;
    bottom: 95px;
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 90px;
    line-height: 64px;
    letter-spacing: -0.1em;
    text-transform: uppercase;
    color: #FFFEE2;
    transform: rotate(-30deg);
    transform-origin: center center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.4s ease;
}

/* Scroll-triggered animation */
.kubrick-title.animate-in {
    opacity: 1;
    transform: rotate(-30deg);
}

.p4-kubrick-wide:hover .kubrick-title {
    transform: rotate(30deg);
}

/* Kubrick Byline */
.p4-kubrick-byline {
    left: 148px;
    top: 520px;
    width: 1143px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    z-index: 5;
}

.kubrick-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 9px;
}

.kubrick-author {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    text-transform: uppercase;
    margin-right: 6px;
}

.kubrick-sep {
    font-family: 'Futura', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    margin-right: 13px;
}

.kubrick-date {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    text-transform: uppercase;
}

/* Tablet Responsive Part 4 */
@media (max-width: 1200px) {
    .part4-section {
        height: auto;
        overflow: visible;
        padding: 0 40px;
    }

    .part4-container {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        height: auto;
    }

    .p4-item {
        position: relative;
        left: auto !important;
        top: auto !important;
    }

    .p4-bw-girls {
        width: 45% !important;
        height: auto !important;
    }

    .p4-bw-girls img {
        width: 100%;
        height: auto;
    }

    .p4-ninja-red {
        width: 28% !important;
        height: auto !important;
    }

    .p4-ninja-red img {
        width: 100%;
        height: auto;
    }

    .p4-title-right,
    .p4-title-left,
    .p4-byline-right,
    .p4-byline-left {
        display: none;
    }

    .p4-kubrick-wide {
        width: 100% !important;
        height: auto !important;
    }

    .p4-kubrick-wide img {
        height: auto;
    }

    .kubrick-title {
        font-size: 60px;
        line-height: 50px;
    }

    .p4-kubrick-byline {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        justify-content: flex-end;
        margin-top: 10px;
    }
}

/* Mobile Responsive Part 4 */
@media (max-width: 768px) {
    .part4-section {
        height: auto;
        padding: 50px 20px;
    }

    .part4-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .p4-item {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        text-align: center;
    }

    .p4-item img {
        margin: 0 auto;
    }

    .p4-bw-girls img,
    .p4-ninja-red img {
        width: 100%;
        height: auto;
    }

    .kubrick-title {
        font-size: 45px;
        line-height: 38px;
        right: 20px;
        bottom: 50px;
        width: 250px;
    }
}

/* ========================================= */
/* POST GRID — 3-COLUMN CARD LAYOUT          */
/* ========================================= */

.pg-section {
    max-width: 1440px;
    margin: 60px auto 0;
    padding: 0 40px;
    box-sizing: border-box;
}

.pg-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
}

.pg-col {
    display: flex;
    flex-direction: column;
}

.pg-col-left,
.pg-col-right {
    width: 339px;
    flex-shrink: 0;
    gap: 38px;
}

.pg-col-center {
    width: 343px;
    flex-shrink: 0;
    gap: 32px;
    padding-top: 15px;
}

/* ---- Large Post Card ---- */
.pg-card-large {
    display: flex;
    flex-direction: column;
}

.pg-card-visual {
    position: relative;
    display: block;
    width: 339px;
    height: 479px;
    overflow: hidden;
    text-decoration: none;
}

.pg-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pg-card-visual:hover .pg-card-img {
    transform: scale(1.08);
}

.pg-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    pointer-events: none;
}

.pg-card-title {
    position: absolute;
    left: 28%;
    top: 55%;
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 60px;
    line-height: 50px;
    letter-spacing: -0.1em;
    text-transform: uppercase;
    color: #FFFEE2;
    transform: rotate(27.28deg);
    transform-origin: center center;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.pg-card:hover .pg-card-title {
    transform: rotate(-27.28deg);
}

/* ---- Byline (shared) ---- */
.pg-card-byline {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.pg-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 9px;
}

.pg-author {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    text-transform: uppercase;
    margin-right: 6px;
}

.pg-sep {
    font-family: 'Futura', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    margin-right: 13px;
}

.pg-date {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    text-transform: uppercase;
}

/* ---- Center: Small Featured Card ---- */
.pg-featured {
    display: flex;
    flex-direction: column;
}

.pg-featured-inner {
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 343px;
    height: 233px;
}

.pg-featured-thumb {
    width: 165px;
    height: 233px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.pg-featured-title {
    position: absolute;
    right: 0;
    top: 107px;
    width: 173px;
    font-family: var(--font-nav);
    font-weight: 350;
    font-size: 45px;
    line-height: 42px;
    letter-spacing: -0.1em;
    text-transform: uppercase;
    color: #000000;
}

/* ---- Center: Subscribe Box ---- */
.pg-subscribe {
    position: relative;
    width: 100%;
    height: 188px;
    overflow: hidden;
}

.pg-subscribe-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pg-subscribe-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.44);
    pointer-events: none;
}

.pg-subscribe-text {
    position: absolute;
    top: 20px;
    left: 16px;
    width: 294px;
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 24px;
    line-height: 75%;
    letter-spacing: -0.13em;
    color: #FF941A;
    margin: 0;
}

.pg-subscribe-btn {
    position: absolute;
    bottom: 24px;
    right: 16px;
    width: 107px;
    height: 47px;
    background: #FF941A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #1C0000;
    text-decoration: none;
    text-transform: uppercase;
}

.pg-subscribe-btn:hover {
    opacity: 0.9;
}

/* Post Grid Responsive */
@media (max-width: 1200px) {
    .pg-section {
        padding: 0 20px;
    }

    .pg-col-left,
    .pg-col-right {
        flex: 1;
        min-width: 0;
        width: auto;
    }

    .pg-col-center {
        flex: 1;
        min-width: 0;
        width: auto;
    }

    .pg-card-visual {
        width: 100%;
        height: auto;
        aspect-ratio: 339 / 479;
    }

    .pg-card-title {
        font-size: 45px;
        line-height: 38px;
    }

    .pg-featured-inner {
        width: 100%;
        height: auto;
    }

    .pg-featured-thumb {
        width: 48%;
        height: auto;
    }

    .pg-featured-title {
        font-size: 32px;
        line-height: 30px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .pg-section {
        padding: 0 20px;
        margin-top: 40px;
    }

    .pg-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .pg-col-left,
    .pg-col-right,
    .pg-col-center {
        width: 100%;
        max-width: 339px;
    }

    .pg-card-title {
        font-size: 36px;
        line-height: 30px;
    }
}

/* ========================================= */
/* SCROLL FOR MORE — TWO POSTER SECTION      */
/* ========================================= */

.scroll-more-section {
    max-width: 1440px;
    margin: 10px auto 0;
    padding: 0 120px;
    box-sizing: border-box;
}

.scroll-more-label {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'PP Neue Montreal Mono', monospace;
    font-weight: 500;
    font-size: 16px;
    line-height: 103%;
    letter-spacing: -0.05em;
    color: #000000;
}

.scroll-more-posters {
    display: flex;
    gap: 34px;
    justify-content: center;
    align-items: flex-start;
}

.scroll-more-card {
    position: relative;
    flex: 1;
    max-width: 557px;
}

.scroll-more-visual {
    display: block;
    position: relative;
    overflow: hidden;
}

.scroll-more-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Shared title styles */
.scroll-more-title {
    position: absolute;
    font-family: 'PP Neue Montreal Mono', monospace;
    font-weight: 500;
    font-size: 80px;
    line-height: 64px;
    letter-spacing: -0.1em;
    text-transform: uppercase;
    pointer-events: none;
    width: 347px;
    transform-origin: center center;
    transition: transform 0.4s ease;
}

/* Left card: black text, rotated -29.76deg */
.scroll-more-title--dark {
    left: 18%;
    top: 38%;
    color: #000000;
    transform: rotate(-29.76deg);
}

.scroll-more-card--left:hover .scroll-more-title--dark {
    transform: rotate(29.76deg);
}

/* Right card: light green text, rotated 15deg */
.scroll-more-title--light {
    left: 15%;
    top: 40%;
    color: #E8FFE2;
    transform: rotate(15deg);
}

.scroll-more-card--right:hover .scroll-more-title--light {
    transform: rotate(-15deg);
}

/* Special guest badge */
.scroll-more-badge {
    position: absolute;
    top: -40px;
    right: -20px;
    width: 114px;
    height: 114px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'PP Neue Montreal Mono', monospace;
    font-weight: 500;
    font-size: 24px;
    line-height: 103%;
    text-align: center;
    letter-spacing: -0.05em;
    color: #FF941A;
    transform: rotate(30deg);
    z-index: 2;
}

/* Byline */
.scroll-more-byline {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 12px;
    gap: 9px;
    font-family: 'PP Neue Montreal Mono', monospace;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.scroll-more-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.scroll-more-sep {
    font-family: 'Futura', sans-serif;
    font-size: 12px;
    line-height: 16px;
}

@media (max-width: 1200px) {
    .scroll-more-section {
        padding: 0 40px;
    }

    .scroll-more-title {
        font-size: 50px;
        line-height: 42px;
        width: 240px;
    }

    .scroll-more-badge {
        width: 90px;
        height: 90px;
        font-size: 20px;
        top: -25px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .scroll-more-section {
        padding: 0 20px;
        margin-top: 50px;
    }

    .scroll-more-posters {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .scroll-more-card {
        max-width: 100%;
    }

    .scroll-more-title {
        font-size: 45px;
        line-height: 38px;
        width: 220px;
    }

    .scroll-more-badge {
        width: 90px;
        height: 90px;
        font-size: 18px;
    }
}

/* ========================================= */
/* ABOVE FOOTER POST CARDS                   */
/* ========================================= */

.above-footer-section {
    max-width: 1440px;
    margin: 10px auto 0;
    padding: 0 168px 0 175px;
    box-sizing: border-box;
}

.above-footer-container {
    display: flex;
    gap: 34px;
    justify-content: flex-start;
}

/* Each card: image + byline below */
.af-card {
    width: 343px;
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: opacity 0.2s ease;
}

.af-card:hover {
    opacity: 0.85;
    color: inherit;
}

/* Visual area: photo + overlapping title */
.af-card-visual {
    display: block;
    position: relative;
    width: 343px;
    height: 265px;
}

/* Card image — the photo */
.af-card-img {
    width: 165px;
    height: 233px;
    display: block;
    object-fit: cover;
}

/* Blog title overlapping the right side */
.af-card-title {
    position: absolute;
    right: 0;
    top: 107px;
    width: 173px;
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 45px;
    line-height: 42px;
    letter-spacing: -0.1em;
    text-transform: uppercase;
    color: #000000;
}

/* Byline below the card image */
.af-card-byline {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.af-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 9px;
}

.af-author {
    font-family: var(--font-nav);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    text-transform: uppercase;
    margin-right: 6px;
}

.af-separator {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    margin-right: 13px;
}

.af-date {
    font-family: var(--font-nav);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    text-transform: uppercase;
}

/* Reduce footer gap on homepage */
body.home-template .site-footer {
    margin-top: 30px;
}

/* Tablet Responsive Above Footer */
@media (max-width: 1200px) {
    .above-footer-section {
        padding: 0 40px;
    }

    .af-card {
        width: auto;
        flex: 1;
        min-width: 0;
    }

    .af-card-visual {
        width: 100%;
        height: auto;
        aspect-ratio: 343 / 265;
    }

    .af-card-img {
        width: 48%;
        height: auto;
    }

    .af-card-title {
        font-size: 32px;
        line-height: 30px;
        width: 130px;
    }
}

/* Mobile Responsive Above Footer */
@media (max-width: 768px) {
    .above-footer-section {
        padding: 0 20px;
        margin-top: 40px;
    }

    .above-footer-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .af-card {
        width: 100%;
        max-width: 343px;
    }

    .af-card-title {
        font-size: 45px;
        line-height: 42px;
        width: 173px;
        min-width: 0;
    }
}

/* ========================================= */
/* PAGE / ARTICLE TEMPLATE STYLES            */
/* ========================================= */

.article.page {
    padding-top: 50px;
    padding-bottom: 150px;
    animation: fadeIn 0.8s ease-out;
}

.article-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: -0.04em;
    color: var(--color-accent);
}

.article-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    margin: 0 0 60px 0;
}

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

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.6;
    color: #000000;
}

.article-content p {
    margin-bottom: 30px;
}

.article-content h2,
.article-content h3 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: var(--color-accent);
}

.article-content blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 30px;
    margin: 40px 0;
    font-size: 24px;
    font-style: italic;
    color: #CCCCCC;
}

.article-content a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 768px) {
    .article-title {
        font-size: 48px;
    }

    .article-content {
        padding: 0 20px;
        font-size: 18px;
    }
}

/* ========================================= */
/* STORE PAGE STYLES                         */
/* ========================================= */

.store-page {
    padding-top: 60px;
    padding-bottom: 0;
    animation: fadeIn 0.8s ease-out;
    max-width: 1440px;
    margin: 0 auto;
}

.store-page + .site-footer {
    margin-top: 40px;
}

.store-products {
    display: flex;
    gap: 40px;
    padding: 0 100px;
    justify-content: center;
}

.store-product {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.store-product-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}

.store-product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.store-product-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-product-cost {
    font-family: 'PP Neue Montreal Mono', 'Space Mono', monospace;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 13px;
    letter-spacing: -0.06em;
    color: #000000;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.store-product-title {
    font-family: 'PP Neue Montreal Mono', 'Space Mono', monospace;
    font-style: normal;
    font-weight: 350 !important;
    font-size: 45px;
    line-height: 42px;
    letter-spacing: -0.1em;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 16px 0;
    font-synthesis: none;
    max-width: 205px;
}

.store-product-desc {
    font-family: 'PP Neue Montreal Mono', 'Space Mono', monospace;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    color: #000000;
    margin: 0 0 20px 0;
    max-width: 321px;
}

.store-product-divider {
    width: 297.01px;
    border: none;
    border-top: 1px solid #000000;
    margin: 0 0 20px 0;
}

.store-btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 47px;
    background: #FF941A;
    color: #000000;
    font-family: 'PP Neue Montreal Mono', 'Space Mono', monospace;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    cursor: pointer;
    align-self: flex-end;
}

.store-btn-cart:hover {
    opacity: 0.8;
    color: #000000;
}

@media (max-width: 1024px) {
    .store-products {
        padding: 0 40px;
        gap: 30px;
    }

    .store-product {
        width: auto;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .store-products {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 50px;
    }

    .store-product {
        width: 100%;
        max-width: 400px;
    }

    .store-product-title {
        font-size: 32px;
        line-height: 36px;
    }
}

.article-content {
    padding: 0 20px;
    font-size: 18px;
}

/* ========================================= */
/* SUBSCRIBE PAGE STYLES                     */
/* ========================================= */

.subscribe-page {
    padding-top: 60px;
    padding-bottom: 0;
    animation: fadeIn 0.8s ease-out;
    max-width: 1440px;
    margin: 0 auto;
}

.subscribe-page + .site-footer {
    margin-top: 40px;
}

/* ---- SECTION 1: Hero Tier ---- */

.sub-hero-section {
    padding: 40px 0 80px;
}

.sub-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1210px;
    padding: 0 40px;
}

.sub-hero-image {
    flex: 0 0 456px;
    width: 456px;
    overflow: hidden;
}

.sub-hero-image img {
    width: 100%;
    height: 644px;
    object-fit: cover;
    display: block;
}

.sub-hero-details {
    flex: 1;
    max-width: 420px;
    padding-top: 200px;
}

/* ---- Shared Tier Typography ---- */

.sub-tier-cost {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 24px;
    line-height: 13px;
    letter-spacing: -0.06em;
    color: #000000;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.sub-cost-suffix {
    font-size: 16px;
    letter-spacing: -0.04em;
}

.sub-tier-title {
    font-family: var(--font-nav);
    font-weight: 600;
    font-size: 45px;
    line-height: 42px;
    letter-spacing: -0.1em;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 16px 0;
}

.sub-tier-desc {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 16px;
    line-height: 13px;
    color: #000000;
    margin: 0 0 30px 0;
    max-width: 321px;
}

.sub-tier-divider {
    width: 297px;
    border: none;
    border-top: 1px solid #000000;
    margin: 0 0 30px 0;
}

.sub-perks-heading {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 24px;
    line-height: 13px;
    letter-spacing: -0.06em;
    color: #000000;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.sub-perks-columns {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.sub-perks-col {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.sub-perk-highlight {
    color: #C1E300;
}

/* ---- Subscribe Buttons ---- */

.sub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 107px;
    height: 47px;
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.sub-btn:hover {
    opacity: 0.8;
}

.sub-btn-accent {
    background: var(--color-accent);
    color: #1C0000;
}

.sub-btn-accent:hover {
    color: #1C0000;
}

.sub-btn-dark {
    background: #000000;
    color: #FFFFFF;
}

.sub-btn-dark:hover {
    color: #FFFFFF;
}

/* ---- SECTION 2: About Band + Tier Cards ---- */

.sub-middle-section {
    display: flex;
    min-height: 480px;
    padding: 0 0 20px 0;
    align-items: flex-start;
}

.sub-tiers-row {
    display: flex;
    gap: 30px;
    flex: 1;
    padding-left: 40px;
    padding-right: 40px;
}

.sub-tiers-row .sub-tier-card {
    flex: 1;
}

.sub-about-band {
    background: #000000;
    padding: 145px 60px 25px 115px;
    min-height: 425px;
    flex: 0 0 580px;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: flex-start;
    align-self: start;
}

.sub-about-content {
    display: flex;
    flex-direction: column;
}

.sub-about-title {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 45px;
    line-height: 42px;
    letter-spacing: -0.1em;
    text-transform: uppercase;
    color: #FF941A;
    margin: 0 0 16px 0;
}

.sub-about-credits {
    margin-bottom: 24px;
}

.sub-about-credits p {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.08em;
    color: #FF941A;
    margin: 0;
}

/* ---- Tier Cards ---- */

.sub-tier-card {
    display: flex;
    flex-direction: column;
}

.sub-tier-card-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}

.sub-tier-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.sub-tier-card-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sub-tier-card-details .sub-btn {
    margin-top: 10px;
    align-self: flex-end;
}

/* ---- Subscribe Page Responsive ---- */

@media (max-width: 1200px) {
    .sub-hero-inner {
        padding: 0 30px;
    }

    .sub-hero-image {
        flex: 0 0 380px;
        width: 380px;
    }

    .sub-hero-image img {
        height: auto;
    }

    .sub-hero-details {
        padding-top: 100px;
    }

    .sub-middle-section {
        flex-direction: column;
        padding: 0 0 40px;
        gap: 40px;
    }

    .sub-about-band {
        margin-left: 0;
        min-width: unset;
        width: 100%;
        padding: 50px 30px 50px 60px;
    }

    .sub-tiers-row {
        padding: 0 30px;
    }

    .sub-tiers-row .sub-tier-card {
        width: auto;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .subscribe-page {
        padding-top: 30px;
    }

    .sub-hero-section {
        padding: 20px 0 60px;
    }

    .sub-hero-inner {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .sub-hero-image {
        flex: none;
        width: 100%;
        max-width: 456px;
    }

    .sub-hero-image img {
        height: auto;
    }

    .sub-hero-details {
        max-width: 100%;
        padding-top: 0;
    }

    .sub-tier-divider {
        width: 100%;
        max-width: 297px;
    }

    .sub-about-band {
        padding: 40px 20px;
    }

    .sub-about-title {
        font-size: 32px;
    }

    .sub-tiers-row {
        padding: 0 20px;
    }

    .sub-tier-card {
        padding: 0;
    }

    .sub-tier-card-image {
        max-width: 100%;
    }

    .sub-tier-title {
        font-size: 32px;
        line-height: 36px;
    }
}

@media (max-width: 480px) {
    .sub-tiers-row {
        flex-direction: column;
        gap: 40px;
    }
}

/* ========================================= */
/* GHOST REQUIRED STYLES (Koenig Editor)     */
/* ========================================= */

.kg-width-wide {
    grid-column: wide-start / wide-end;
}

.kg-width-full {
    grid-column: full-start / full-end;
}

.kg-image-card img {
    width: 100%;
    height: auto;
}

/* Captions */
.kg-card figcaption {
    padding: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.4em;
    font-weight: 600;
    color: #CCCCCC;
    text-align: center;
}

/* Coming Soon placeholder page */
.coming-soon-section {
    width: 100%;
    min-height: calc(100vh - 87px - 50px);
    background: #FFF6BB;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    box-sizing: border-box;
}

.coming-soon-inner {
    text-align: center;
    max-width: 720px;
}

.coming-soon-logo {
    width: 420px;
    max-width: 80%;
    height: auto;
    margin: 0 auto 32px auto;
    display: block;
}

.coming-soon-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 96px);
    margin: 0 0 16px 0;
    color: #000;
    letter-spacing: 2px;
}

.coming-soon-text {
    font-family: var(--font-body);
    font-size: 18px;
    color: #000;
    margin: 0 0 32px 0;
}

.coming-soon-back {
    display: inline-block;
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 24px;
    border: 2px solid #000;
    color: #000;
    background: transparent;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.coming-soon-back:hover {
    background: #000;
    color: #FFF6BB;
}