/*
Theme Name: My Custom Theme
Description: A custom theme for Uppercut Production
Version: 1.0.0
Author: Antigravity
*/

:root {
    --cream: #EFEBDA;
    --red: #CB0909;
    --red-dark: #a00707;
    --black: #0D0D0D;
    --black2: #141414;
    --black3: #1c1c1c;
    --grey: #666;
    --grey-light: #999;
    --border: rgba(239, 235, 218, 0.07);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}

/* GRAIN */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.3;
}

/* ══════════ NAV ══════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; /* Increased to ensure visibility */
    height: 62px;
    display: flex;
    align-items: stretch;
    background: var(--cream);
    border-bottom: 2px solid var(--black);
    padding: 0 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(13, 13, 13, 0.1);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-inner {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

.logo-row1 {
    display: flex;
    align-items: stretch;
    line-height: 1;
}

.logo-upper {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1;
}

.logo-cut {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    color: var(--black);
    background: var(--red);
    text-transform: uppercase;
    line-height: 1;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.logo-prod {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    color: var(--black);
    background: var(--red);
    text-transform: uppercase;
    line-height: 1;
    padding: 0.25em 0.4em;
    display: inline-block;
    align-self: flex-start;
}

.nav-menu {
    display: flex;
    list-style: none;
    flex: 1;
}

.nav-menu li {
    border-right: 1px solid rgba(13, 13, 13, 0.1);
}

.nav-menu a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1.4rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(13, 13, 13, 0.5);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.nav-menu a:hover {
    color: var(--black);
    background: rgba(13, 13, 13, 0.04);
}

/* UTILS */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.nav-cta {
    margin-left: auto;
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(13, 13, 13, 0.1);
}

.nav-cta a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--red);
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.nav-cta a:hover {
    background: var(--red-dark);
}

/* ══════════ HERO ══════════ */
.hero {
    min-height: 100vh;
    padding-top: 62px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 4rem;
    gap: 2rem;
}

/* Watermark */
.hero-wm {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(12rem, 26vw, 26rem);
    color: transparent;
    -webkit-text-stroke: 2px rgba(203, 9, 9, 0.05);
    pointer-events: none;
    line-height: 1;
    user-select: none;
    white-space: nowrap;
}

.hero-divider {
    position: absolute;
    top: 62px;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--red);
    z-index: 2;
}

.hero-left {
    flex: 1.2;
    padding: 2rem 0;
    position: relative;
    z-index: 3;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.5s ease 0.1s both;
}

.eyebrow-line {
    width: 2.5rem;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

.eyebrow-text {
    font-family: 'Courier Prime', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red);
}

.hero-headline-wrap {
    margin-bottom: 3rem;
    animation: fadeUp 0.6s ease 0.2s both;
}

.hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 5.5vw, 6.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--cream);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-headline-red {
    color: var(--black);
    background: var(--red);
    padding: 0 0.08em;
    display: inline;
}

.hero-sub-1 {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.8;
    color: var(--cream);
    display: block;
    padding-left: 1rem;
    border-left: 3px solid var(--red);
    margin-bottom: 0.4rem;
}

.hero-sub-2 {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.8;
    color: #c8c4b4;
    display: block;
    padding-left: 1rem;
    border-left: 3px solid rgba(203, 9, 9, 0.3);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 3;
    animation: fadeIn 0.8s ease 0.3s both;
}

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    border-left: 4px solid var(--red);
}

.hero-img-wrap img {
    width: 100%;
    display: block;
    filter: grayscale(15%) contrast(1.05);
    transition: transform 0.5s;
}

.hero-img-wrap:hover img {
    transform: scale(1.02);
}

.img-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 3rem 3rem 0;
    border-color: transparent var(--red) transparent transparent;
}

/* ══════════ QUOTE BALK ══════════ */
.quote-balk {
    background: var(--red);
    padding: 0.6rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.quote-balk span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1rem, 2vw, 1.6rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1;
}

.quote-balk .dot {
    font-size: 1rem;
    opacity: 0.35;
    letter-spacing: 0;
}

/* ══════════ ARTIKELS ══════════ */
.artikels {
    border-bottom: 1px solid rgba(13, 13, 13, 0.15);
    background: var(--cream);
}

.artikels-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.alle-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    transition: color 0.2s;
    align-self: flex-end;
    padding-bottom: 0.2rem;
}

.alle-link:hover {
    color: var(--black);
}

.artikels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.artikel-kaart {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    transition: background 0.25s;
}

.artikel-kaart:hover {
    background: #e8e3d0;
}

.artikel-img-link {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--black3);
}

.artikel-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) contrast(1.05);
    transition: transform 0.5s;
}

.artikel-img-link:hover img {
    transform: scale(1.05);
}

.artikel-cat {
    position: absolute;
    bottom: 0;
    left: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    padding: 0.4rem 1rem;
    z-index: 5;
}

.artikel-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.6rem;
}

.artikel-datum {
    font-family: 'Courier Prime', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #444444;
}

.artikel-titel {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 0.02em;
}

.artikel-excerpt {
    font-family: 'Courier Prime', monospace;
    font-size: 0.88rem;
    line-height: 1.8;
    color: #222222;
    flex: 1;
}

.artikel-lees {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    transition: color 0.2s;
    margin-top: 0.5rem;
    align-self: flex-start;
}

/* ══════════ PIJLERS ══════════ */
.pijlers {
    border-bottom: 1px solid rgba(13, 13, 13, 0.15);
    background: var(--cream);
}

.pijlers-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(13, 13, 13, 0.15);
}

.s-tag {
    font-family: 'Courier Prime', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 0.5rem;
}

.s-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--black);
    line-height: 1;
}

.pijlers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(13, 13, 13, 0.15);
}

.pijler {
    background: var(--cream);
    padding: 1.2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
}

.pijler:hover {
    background: #e8e3d0;
}

.pijler::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.pijler:hover::before {
    transform: scaleX(1);
}

.pijler-nr {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 2.5rem;
    color: rgba(203, 9, 9, 0.05);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.pijler-naam {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--black);
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(13, 13, 13, 0.15);
    line-height: 1.1;
}

.pijler-tekst {
    font-family: 'Courier Prime', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #222222;
}

/* ══════════ OVER ONS ══════════ */
.over-ons {
    border-bottom: 1px solid var(--border);
    background: var(--black);
}

.over-ons-inner-single {
    max-width: 860px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.over-titel {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.over-titel em {
    font-style: italic;
    color: var(--red);
}

.over-desc {
    font-family: 'Courier Prime', monospace;
    font-size: 0.92rem;
    line-height: 1.9;
    color: #c8c4b4;
    margin-bottom: 1rem;
}

.over-desc strong {
    color: var(--cream);
    font-weight: 700;
}

.over-missie {
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 3px solid var(--red);
    background: rgba(203, 9, 9, 0.05);
}

.missie-label {
    font-family: 'Courier Prime', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 0.6rem;
}

.missie-tekst {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--cream);
}

/* ══════════ NEWSLETTER ══════════ */
.newsletter {
    background: var(--black2);
}

.newsletter-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.nl-tag {
    font-family: 'Courier Prime', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 1rem;
}

.nl-titel {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.nl-titel .r {
    color: var(--red);
    display: block;
}

.nl-desc {
    font-family: 'Courier Prime', monospace;
    font-size: 0.7rem;
    line-height: 1.9;
    color: #c8c4b4;
}

.nl-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nl-row {
    display: flex;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.nl-row:focus-within {
    border-color: var(--red);
}

.nl-row input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 1.1rem 1.4rem;
    font-family: 'Courier Prime', monospace;
    font-size: 0.7rem;
    color: var(--cream);
    letter-spacing: 0.05em;
}

.nl-row input::placeholder {
    color: rgba(239, 235, 218, 0.2);
}

.nl-row button {
    background: var(--red);
    border: none;
    padding: 0 1.8rem;
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.88rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.nl-row button:hover {
    background: var(--red-dark);
}

/* ══════════ FOOTER ══════════ */
footer {
    background: var(--black2);
    border-top: 1px solid var(--border);
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a0998c;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

.footer-copy {
    font-family: 'Courier Prime', monospace;
    font-size: 0.78rem;
    color: #a0998c;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.6rem;
}

/* ══════════ HAMBURGER ══════════ */
.hamburger {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    height: 100%;
    border-left: 1px solid rgba(13, 13, 13, 0.1);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
}

.hamburger:hover span {
    background: var(--red);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--black);
    z-index: 499;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.mobile-menu ul li a {
    display: block;
    padding: 1.2rem 2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu ul li a:hover {
    background: var(--red);
    color: var(--black);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 960px) {
    .nav-menu {
        display: none !important;
    }

    .hero {
        display: grid !important;
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        padding: 6rem 1.5rem 3rem !important;
        gap: 0 !important;
    }

    .hero-divider {
        display: none !important;
    }

    .hero-wm {
        display: none !important;
    }

    .hero-left {
        padding: 0 !important;
        text-align: left !important;
        flex: none !important;
        width: 100% !important;
    }

    .hero-right {
        padding: 2rem 0 0 !important;
        justify-content: flex-start !important;
        flex: none !important;
        width: 100% !important;
    }

    .hero-headline {
        font-size: clamp(2rem, 10vw, 3.5rem) !important;
        line-height: 1.1 !important;
    }

    .quote-balk {
        padding: 0.8rem 1.5rem !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
    }

    .quote-balk span {
        font-size: 1.2rem !important;
    }

    .artikels-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        background: transparent !important;
    }

    .artikel-kaart {
        border-bottom: 1px solid rgba(13, 13, 13, 0.1) !important;
    }

    .pijlers-inner {
        padding: 4rem 1.5rem !important;
    }

    .pijlers-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .over-ons-inner-single {
        padding: 4rem 1.5rem !important;
    }

    .over-titel {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    }

    .newsletter-inner {
        grid-template-columns: 1fr !important;
        padding: 4rem 1.5rem !important;
        gap: 3rem !important;
    }

    .nl-titel {
        font-size: clamp(2rem, 9vw, 3rem) !important;
    }

    footer {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
    }

    .footer-right {
        text-align: left !important;
    }
}

/* ══════════ BLOG ARCHIVE ══════════ */
.blog-archive-outer {
    background: var(--cream);
    padding-top: 62px;
    min-height: 100vh;
    color: var(--black);
}

.blog-archive-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* SEARCH FORM */
.blog-search-wrap {
    margin-bottom: 4rem;
}

.search-form {
    width: 100%;
}

.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    color: #999;
}

.search-field {
    width: 100%;
    padding: 0.9rem 1.2rem 0.9rem 3.5rem;
    border: 1px solid rgba(13, 13, 13, 0.15);
    border-radius: 10px;
    background: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-field:focus {
    border-color: var(--red);
}

/* BLOG FEED ROWS */
.blog-feed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-row {
    display: flex;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(13, 13, 13, 0.2);
    align-items: flex-start;
}

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

.blog-row-image {
    flex: 0 0 400px; /* Fixed width for the image part */
    aspect-ratio: 1 / 1;
}

.blog-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) contrast(1.05);
}

.blog-post-placeholder {
    width: 100%;
    height: 100%;
    background: #ddd;
}

.blog-row-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 0.5rem;
}

.blog-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.blog-date {
    color: var(--black);
}

.blog-category {
    color: var(--red);
}

.blog-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.2rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.blog-title a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-title a:hover {
    color: var(--red);
}

.blog-author-strip {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: #666;
    margin-top: auto;
}

.blog-excerpt {
    font-family: 'Courier Prime', monospace;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin: 1.5rem 0;
    flex: 1;
}

.blog-read-more {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    margin-top: 1rem;
    align-self: flex-start;
    display: inline-block;
}

.blog-read-more:hover {
    color: var(--black);
    transform: translateX(5px);
}

/* PAGINATION */
.blog-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 1rem;
}

.blog-pagination a, 
.blog-pagination span {
    padding: 0.5rem 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
}

.blog-pagination .current {
    color: var(--red);
    border-bottom: 2px solid var(--red);
}

@media (max-width: 960px) {
    .blog-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .blog-row-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .blog-title {
        font-size: 2.2rem;
    }
    
    .blog-archive-inner {
        padding: 2rem 1.5rem;
    }
    
    /* Grid layout on mobile - force 1 column */
    .blog-feed {
        grid-template-columns: 1fr !important;
    }
    
    .blog-read-more {
        align-self: flex-start;
    }
}

/* ══════════ SINGLE POST REDESIGN ══════════ */
.single-post-redesign {
    background: #F7F5F0;
    padding-top: 62px; /* Matches nav height */
    position: relative;
    z-index: 1;
}

/* Hero Stage - Olive Background */
.single-hero-stage {
    background: #6A7061; /* The Bureau Brussels Olive/Grey */
    color: #fff;
    padding: 6rem 0 5rem;
    text-align: left;
}

.container--article {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--article-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 2rem;
}

.single-hero-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.meta-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-cat {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.hero-article-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.hero-bottom-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin-bottom: 3.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Article Body Stage */
.article-body-stage {
    padding: 5rem 0;
}

/* Author Box */
.author-profile-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.profile-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: #EAE3D4;
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.avatar-placeholder::after {
    content: '';
    position: absolute;
    inset: 15px;
    background: #6A7061;
    border-radius: 2px;
}

.profile-title-row h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.profile-status {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

.profile-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-pill-dark {
    background: #1B1B1B;
    color: #fff;
    border: none;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.btn-pill-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #1B1B1B;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.profile-footer {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #1B1B1B;
}

.authors-label {
    color: #888;
}

/* Article Content */
.single-article-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #111;
}

.inline-featured-img {
    margin: 0 0 3rem;
}

.inline-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.single-article-content p {
    margin-bottom: 2rem;
}

/* Dark Promo Box */
.dark-newsletter-promo {
    background: #1B1B1B;
    color: #fff;
    padding: 2.5rem;
    margin-top: 5rem;
    text-align: center;
}

.dark-newsletter-promo p {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.dark-newsletter-promo a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-ctas { flex-direction: column; }
    .profile-header { flex-direction: column; gap: 1rem; }
}

/* ══════════ CONTACT PAGE ══════════ */
.contact-page-wrapper {
    background: var(--cream);
    padding-top: 62px;
}

.contact-hero {
    background: var(--black);
    color: #fff;
    padding: 10rem 0 6rem;
}

.contact-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(4rem, 10vw, 8rem);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #fff; /* Ensure white color */
}

.contact-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.8;
    color: var(--cream);
}

.contact-content-stage {
    padding: 8rem 0;
}

.container--flex {
    display: flex;
    gap: 8rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 4rem;
}

.info-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 1.2rem;
}

.info-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--black);
    text-decoration: none;
    line-height: 1.1;
    transition: color 0.2s;
}

.info-link:hover {
    color: var(--red);
}

.social-list {
    list-style: none;
    padding: 0;
}

.social-list li {
    margin-bottom: 0.8rem;
}

.info-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--black);
}

/* Contact Form */
.contact-form-wrap {
    flex: 1.4;
    background: #fff;
    padding: 5rem;
    border: 2px solid var(--black);
    box-shadow: 20px 20px 0 var(--black);
}

.contact-form-premium {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--black); /* Fix: Labels were too light */
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    border: 2px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    outline: none;
    color: var(--black);
    transition: border-color 0.2s;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--black);
}

.btn-submit-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--black);
    color: #fff;
    border: none;
    padding: 1.4rem 2.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 1rem;
    white-space: nowrap;
}

.btn-submit-premium:hover {
    background: var(--red);
}

.btn-submit-premium:active {
    transform: translateY(2px);
}

@media (max-width: 1024px) {
    .container--flex { gap: 4rem; }
    .contact-form-wrap { padding: 3rem; }
}

@media (max-width: 768px) {
    .container--flex { flex-direction: column; gap: 5rem; }
    .contact-hero { padding: 8rem 0 4rem; }
    .info-link { font-size: 1.8rem; }
    .contact-form-wrap { padding: 2rem; box-shadow: 10px 10px 0 var(--black); }
}

/* ══════════ PRODUCT PAGE REBUILD ══════════ */
.product-page-wrapper {
    background: var(--black2);
}

/* --- RICH TEXT CENTERED --- */
.prod-rich-text {
    padding: 8rem 2rem;
    text-align: center;
    background: var(--cream);
    color: var(--black);
}

.prod-rich-text.dark-bg {
    background: var(--black2);
    color: var(--cream);
}

.prod-rich-text-inner {
    max-width: 800px;
    margin: 0 auto;
}

.prt-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.prod-rich-text.dark-bg .prt-heading {
    color: var(--cream);
}

.prt-content {
    font-family: 'Courier Prime', monospace;
    font-size: 1.1rem;
    line-height: 1.8;
}

.prod-rich-text.dark-bg .prt-content {
    color: #c8c4b4;
}

/* --- IMAGE WITH TEXT --- */
.prod-image-text {
    padding: 8rem 0;
    background: var(--black);
    color: var(--cream);
    overflow: hidden;
}

.pit-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 0 3rem;
}

.pit-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.pit-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 5.5rem);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--cream);
}

.pit-text {
    font-family: 'Courier Prime', monospace;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c8c4b4;
    max-width: 600px;
}

.pit-image-col {
    flex: 1;
    position: relative;
    display: flex;
}

.img-align-right .pit-image-col {
    justify-content: flex-end;
}

.img-align-left .pit-image-col {
    justify-content: flex-start;
}

.hero-img-wrap {
    position: relative;
    max-width: 600px;
    width: 100%;
}

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

.btn-red {
    display: inline-block;
    background: var(--red);
    color: var(--cream);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.15em;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    align-self: flex-start;
    transition: background 0.2s, transform 0.2s;
}

.btn-red:hover {
    background: #d01111;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .pit-inner {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 4rem;
    }
    .img-align-right .pit-inner .pit-image-col {
        order: -1;
    }
    .pit-content-col {
        align-items: center;
        text-align: center;
    }
    .pit-text {
        text-align: center;
    }
    .btn-red {
        align-self: center;
    }
}

/* ══════════ BOEK SECTIE (HOMEPAGE) ══════════ */
.boek {
    background: var(--black);
    color: var(--cream);
    border-bottom: 1px solid var(--border);
}

.boek-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 5rem;
    align-items: start;
    font-family: 'Barlow', sans-serif;
}


.boek-cover-wrap {
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.boek-cover {
    width: 100%;
    display: block;
    border: 0.5px solid rgba(239, 235, 218, 0.15);
    transition: transform 0.5s ease;
}

.boek-cover-wrap:hover .boek-cover {
    transform: translateY(-10px);
}

.boek-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 32px 32px 0;
    border-color: transparent var(--red) transparent transparent;
    z-index: 2;
}

.boek-right {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.boek-tag {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: var(--red);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.boek-tag::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1.5px;
    background: var(--red);
}

.boek-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--cream);
    margin: 0;
}

.boek-title .red {
    color: var(--black);
    background: var(--red);
    padding: 0 0.08em;
    display: inline-block;
}

.boek-punch {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1.1;
    margin: 0;
}

.boek-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
    width: 100%;
}

.boek-sub {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-size: 1rem;
    color: #c8c4b4;
    line-height: 1.9;
    border-left: 3px solid var(--red);
    padding-left: 1.5rem;
    max-width: 800px;
}

.boek-author {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: #888;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.boek-btn {
    display: inline-block;
    background: var(--red);
    color: var(--cream);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.2rem 2.8rem;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 1rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.boek-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .boek-inner {
        grid-template-columns: 1fr !important;
        padding: 5rem 2rem;
        gap: 3rem;
        text-align: center;
    }

    .boek-cover-wrap {
        max-width: 280px;
        margin: 0 auto;
    }
    .boek-tag {
        justify-content: center;
    }
    .boek-tag::before {
        display: none;
    }
    .boek-sub {
        border-left: none;
        border-top: 3px solid var(--red);
        padding-left: 0;
        padding-top: 1.5rem;
        margin: 0 auto;
    }
    .boek-btn {
        align-self: center;
    }
}

/* ══════════ PRODUCT PAGE NEW SECTIONS ══════════ */
.pp {
    font-family: 'Barlow', sans-serif;
    max-width: 100%;
}

/* PRODUCT HERO — ZWART */
.prod-hero {
    background: var(--black);
    color: var(--cream);
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 5rem;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.prod-hero .cover-wrap {
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.prod-hero .cover {
    width: 100%;
    display: block;
    border: 0.5px solid rgba(239, 235, 218, 0.15);
}

.prod-hero .cover-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 36px 36px 0;
    border-color: transparent var(--red) transparent transparent;
}

.prod-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prod-hero-tag {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: var(--red);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.prod-hero-tag::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1.5px;
    background: var(--red);
}

.prod-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-transform: uppercase;
    line-height: 0.93;
    color: var(--cream);
    margin: 0;
}

.prod-hero-title .red {
    color: var(--black);
    background: var(--red);
    padding: 0 0.08em;
    display: inline-block;
}

.prod-hero-author {
    font-family: 'Courier Prime', monospace;
    font-size: 0.82rem;
    letter-spacing: 0.25em;
    color: #888;
    text-transform: uppercase;
}

.prod-hero-vraag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1.1;
    margin: 0;
}

.prod-hero-antw {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-size: 1rem;
    color: #c8c4b4;
    line-height: 1.9;
    border-left: 3px solid var(--red);
    padding-left: 1.5rem;
    max-width: 700px;
}

.prod-hero-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: #666;
    text-transform: uppercase;
}

.prod-hero-btn {
    display: inline-block;
    background: var(--red);
    color: var(--cream);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.2rem 2.8rem;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.prod-hero-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

/* VOORWOORD — BEIGE */
.prod-voorwoord {
    background: var(--cream);
    color: var(--black);
    padding: 6rem 4rem;
    border-top: 2px solid var(--black);
}

.vw-inner {
    max-width: 720px;
}

.vw-punch {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    text-transform: uppercase;
    line-height: 1.0;
    color: var(--black);
    margin: 0 0 0.25rem;
}

.vw-divider {
    height: 2px;
    background: var(--black);
    margin: 2rem 0;
    opacity: 0.15;
}

.vw-sub {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(13, 13, 13, 0.75);
    line-height: 2;
    border-left: 3px solid var(--red);
    padding-left: 1.5rem;
}

.vw-author {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    color: rgba(13, 13, 13, 0.4);
    text-transform: uppercase;
    margin-top: 1.5rem;
}

/* CTA — RUSTIG ZWART */
.prod-cta {
    background: var(--black);
    color: var(--cream);
    padding: 6rem 4rem;
    border-top: 2px solid var(--black);
    text-align: center;
}

.cta-inner {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-author {
    font-family: 'Courier Prime', monospace;
    font-size: 0.82rem;
    letter-spacing: 0.3em;
    color: #666;
    text-transform: uppercase;
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1;
    margin: 0;
}

.cta-divider {
    width: 3rem;
    height: 2px;
    background: var(--red);
}

.cta-price {
    font-family: 'Courier Prime', monospace;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.2em;
}

.cta-btn {
    display: inline-block;
    background: var(--red);
    color: var(--cream);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.2rem 3.5rem;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.cta-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .prod-hero {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding: 5rem 2rem;
        gap: 3rem;
    }
    .prod-hero .cover-wrap {
        max-width: 280px;
        margin: 0 auto;
    }
    .prod-hero-tag {
        justify-content: center;
    }
    .prod-hero-tag::before {
        display: none;
    }
    .prod-hero-antw {
        border-left: none;
        border-top: 3px solid var(--red);
        padding-left: 0;
        padding-top: 1.5rem;
        margin: 0 auto;
    }
    .prod-hero-btn {
        align-self: center;
    }
    .prod-voorwoord, .prod-cta {
        padding: 5rem 2rem;
    }
    .vw-sub {
        border-left: none;
        border-top: 3px solid var(--red);
        padding-left: 0;
        padding-top: 1.5rem;
    }
}
