        :root {
            --bg-base: #FDFDFD;
            --bg-surface: #FFFFFF;
            --text-primary: #111111;
            --text-secondary: #71717A;
            --accent: #E11D48;
            --border: #E4E4E7;

            --dark-base: #000000;
            /* Pure Black for Ticker, Header, Moar, Footer */
            --dark-elevated: #111111;
            /* Off-black for the post list background */
            --dark-surface: #1A1A1A;
            --dark-text: #F7F7F7;
            --dark-muted: #A1A1AA;
            /* Zinc-400 */
            --dark-border: #2A2A2A;

            --font-display: 'Darker Grotesque', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

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

        body {
            background-color: var(--bg-surface);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

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

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

        /* Ghost Koenig Editor Required Classes */
        .kg-width-wide {
            max-width: 1200px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .kg-width-full {
            max-width: 100vw;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }

        main {
            flex-grow: 1;
        }

        /* ----- HEADER ----- */
        .site-header {
            padding: 30px 60px 24px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            /* Align bottom */
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border);
        }

        .header-left {
            display: flex;
            align-items: center;
            /* Center vertically relative to logo */
            gap: 24px;
        }

        .site-logo {
            font-family: 'Unbounded', display;
            font-weight: 900;
            font-size: 2.6rem;
            letter-spacing: -0.05em;
            line-height: 0.8;
            text-transform: uppercase;
        }

        .site-subtitle {
            font-family: var(--font-body);
            font-size: 0.75rem;
            line-height: 1.3;
            font-weight: 600;
            color: var(--text-secondary);
            text-align: left;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            max-width: 250px;
            border-left: 1px solid var(--border);
            padding-left: 24px;
            transform: translateY(2px);
            /* Slight nudge to center with caps */
        }

        .site-subtitle span {
            color: var(--text-primary);
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s ease;
            transform: translateY(-4px);
            /* Visual alignment with the bottom of the logo text */
            display: inline-block;
        }

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

        /* ----- HORIZONTAL TICKER ----- */
        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            background: var(--dark-base);
            border-bottom: 1px solid var(--dark-border);
            padding: 12px 0;
            margin-top: 0;
            white-space: nowrap;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--dark-muted);
            display: flex;
        }

        .ticker {
            display: flex;
            width: max-content;
            animation: ticker 40s linear infinite;
        }

        .ticker-inner {
            display: flex;
            flex-shrink: 0;
        }

        .ticker-item {
            margin-right: 60px;
        }

        .ticker-item strong {
            color: var(--dark-text);
            margin-right: 6px;
        }

        @keyframes ticker {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ----- HERO POST ----- */
        .hero-section {
            padding-left: 60px;
            padding-right: 0;
            background-color: var(--bg-surface);
            margin-top: -1px;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 2fr 3fr;
            min-height: 500px;
        }

        .hero-info {
            padding: 60px 60px 60px 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .tag-large {
            font-family: var(--font-display);
            font-size: 2rem;
            line-height: 1;
            font-weight: 500;
            letter-spacing: -0.02em;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 5.5rem;
            line-height: 0.95;
            font-weight: 700;
            letter-spacing: -0.04em;
            margin-top: auto;
            margin-bottom: 24px;
            padding-right: 40px;
        }

        .hero-title a {
            transition: color 0.3s ease;
        }

        .hero-title a:hover {
            color: #555555;
        }

        .hero-meta {
            font-size: 0.9rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .hero-image-wrap {
            position: relative;
            overflow: hidden;
            background: var(--bg-base);
        }

        .hero-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%) contrast(1.1);
            transition: filter 0.5s ease;
        }

        .hero-image-wrap:hover img {
            filter: grayscale(0%) contrast(1.05);
        }

        /* ----- DIVIDER BANDS (Pure Black) ----- */
        .section-divider-top {
            height: 70px;
            background-color: var(--dark-base);
            color: var(--dark-text);
            display: flex;
            align-items: center;
            padding: 0 60px;
            border-top: 1px solid var(--dark-border);
            border-bottom: 1px solid var(--dark-border);
        }

        .section-divider-bottom {
            height: 70px;
            background-color: var(--dark-base);
            color: var(--dark-text);
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 0 60px;
            border-bottom: 1px solid var(--dark-border);
        }

        .section-divider-top h2 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            line-height: 1;
            font-weight: 500;
            letter-spacing: -0.02em;
            margin: 0;
            transform: translateY(2px);
        }

        .divider-link-moar {
            font-family: var(--font-display);
            font-size: 2.2rem;
            line-height: 1;
            font-weight: 500;
            letter-spacing: -0.02em;
            color: var(--dark-text);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s;
            display: flex;
            align-items: center;
            gap: 12px;
            transform: translateY(2px);
        }

        .divider-link-moar:hover {
            color: var(--dark-muted);
            transform: translateY(2px) translateX(4px);
        }

        /* ----- POST GRID (Off-Black) ----- */
        .recent-section {
            background-color: var(--dark-elevated);
            color: var(--dark-text);
        }

        .post-list {
            display: flex;
            flex-direction: column;
        }

        .post-row {
            position: relative;
            display: flex;
            align-items: center;
            padding: 60px;
            border-bottom: 1px solid var(--dark-border);
            overflow: hidden;
            cursor: pointer;
            min-height: 200px;
            background-color: var(--dark-elevated);
        }

        .post-row:last-child {
            border-bottom: none;
        }

        .row-content {
            display: grid;
            grid-template-columns: 140px 1fr;
            gap: 40px;
            align-items: center;
            flex-grow: 1;
            z-index: 2;
            position: relative;
            width: 70%;
        }

        .row-date {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--dark-muted);
            letter-spacing: 0.05em;
            transition: color 0.4s ease;
        }

        .row-title {
            font-family: var(--font-display);
            font-size: 4rem;
            line-height: 1;
            font-weight: 600;
            letter-spacing: -0.03em;
            color: var(--dark-text);
            transition: color 0.4s ease;
            margin: 0;
        }

        .row-preview {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 30%;
            z-index: 1;
            overflow: hidden;
            transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .row-preview::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0) 80%);
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .preview-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transform: scale(1.6);
            transform-origin: center right;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
        }

        .post-row:hover .row-preview {
            width: 100%;
        }

        .post-row:hover .row-preview::after {
            opacity: 1;
            background: linear-gradient(to right, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.4) 100%);
        }

        .post-row:hover .preview-img {
            filter: grayscale(0%);
            transform: scale(1.1);
            transform-origin: center center;
        }

        .post-row:hover .row-title,
        .post-row:hover .row-date {
            color: #FFFFFF;
        }

        /* ----- SUBSCRIBE (WHITE) ----- */
        .subscribe-band {
            background-color: var(--bg-surface);
            padding: 80px 60px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .subscribe-band h3 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .subscribe-band h3 span {
            color: var(--text-secondary);
            font-size: 1.5rem;
        }

        .subscribe-form {
            display: flex;
            gap: 12px;
            flex-grow: 1;
            max-width: 600px;
        }

        .subscribe-form input {
            flex-grow: 1;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            padding: 16px 24px;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 1rem;
            outline: none;
            border-radius: 4px;
            transition: border-color 0.2s;
        }

        .subscribe-form input:focus {
            border-color: #666;
        }

        .subscribe-form button {
            background: var(--text-primary);
            color: var(--bg-surface);
            border: none;
            padding: 0 32px;
            font-size: 1rem;
            font-family: var(--font-body);
            font-weight: 600;
            cursor: pointer;
            border-radius: 4px;
            transition: opacity 0.2s;
        }

        .subscribe-form button:hover {
            opacity: 0.8;
        }

        /* ----- FOOTER (BLACK) ----- */
        .site-footer {
            background-color: var(--dark-base);
            padding: 80px 60px 80px 60px;
            color: var(--dark-text);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
        }

        .footer-brand h3 {
            font-family: 'Unbounded', display;
            font-weight: 900;
            font-size: 1.6rem;
            letter-spacing: -0.05em;
            line-height: 1;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: var(--dark-muted);
            font-size: 0.95rem;
            max-width: 300px;
            margin-bottom: 32px;
        }

        .footer-nav-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-nav-col h4 {
            font-family: var(--font-body);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--dark-muted);
            margin-bottom: 8px;
        }

        .footer-nav-col a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--dark-text);
            transition: color 0.2s;
        }

        .footer-nav-col a:hover {
            color: var(--accent);
        }

        /* ----- REVISED FOOTER BOTTOM BAR (Concept 14) ----- */
        .footer-bottom {
            background-color: var(--dark-base);
            /* Pure Black */
            border-top: 1px solid var(--dark-border);
            height: 70px;
            /* Reduced specific fixed height */
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--dark-muted);
            font-weight: 500;
            padding: 0 60px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ----- RESPONSIVE ----- */
        @media (max-width: 1024px) {
            .site-header {
                flex-direction: column;
                align-items: flex-start;
                padding: 30px 24px 24px;
                gap: 24px;
            }

            .header-left {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .site-subtitle {
                border-left: none;
                padding-left: 0;
                transform: none;
            }

            .nav-links {
                width: 100%;
                justify-content: flex-end;
                gap: 24px;
            }

            .hero-container {
                grid-template-columns: 1fr;
                border-bottom: none;
                min-height: auto;
            }

            .hero-info {
                border-right: none;
                padding: 40px 0;
            }

            .hero-section {
                padding-right: 0;
            }

            .row-content {
                width: 100%;
                grid-template-columns: 100px 1fr;
                gap: 24px;
                padding-right: 20%;
            }

            .row-title {
                font-size: 3rem;
            }

            .row-preview {
                width: 40%;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .subscribe-band {
                flex-direction: column;
                align-items: stretch;
            }
        }

        @media (max-width: 768px) {

            .site-header {
                padding: 24px 16px 0;
            }

            .hero-section {
                padding: 0;
                /* Remove padding entirely to allow image to hit edges */
            }

            .hero-info {
                padding: 40px 24px;
                /* Add internal padding back to text content */
            }

            .hero-image-wrap {
                height: 300px;
                display: block;
                /* Fixed height for image on mobile so it doesn't take up the whole screen */
            }

            .section-divider-top,
            .section-divider-bottom,
            .post-row,
            .site-footer,
            .subscribe-band {
                padding: 40px 24px;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .row-content {
                grid-template-columns: 1fr;
                gap: 8px;
                padding-right: 0;
            }

            .row-title {
                font-size: 2.2rem;
            }

            .row-preview {
                width: 100%;
                opacity: 0.4;
                transition: opacity 0.3s ease;
            }

            .row-preview::after {
                opacity: 1;
                background: rgba(17, 17, 17, 0.85);
                /* Dark background to ensure text readability normally */
            }

            .post-row:hover .row-preview {
                opacity: 1;
            }

            .post-row:hover .row-preview::after {
                background: rgba(17, 17, 17, 0.4);
                /* Significantly lighter overlay when hovered to let color pop */
            }

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

            /* Revised mobile footer bottom */
            .footer-bottom {
                flex-direction: column;
                height: auto;
                padding: 24px;
                gap: 16px;
                align-items: flex-start;
                text-align: left;
            }

            .footer-bottom div[style] {
                text-align: left !important;
            }

            .subscribe-form {
                flex-direction: column;
                align-items: stretch;
            }

            .subscribe-form input {
                width: 100%;
            }

            .subscribe-form button {
                padding: 12px;
            }
        }