/**
 * PM Interieurstudio - Main Stylesheet
 *
 * @package PM_Interieurstudio
 * @since 1.0
 */

/* ==========================================================================
   Google Fonts
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&family=Caveat:wght@400;500;600&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    /* Brand Colors */
    --pm-color-burgundy-dark: #4A0D14;  /* Donkerder bordeaux */
    --pm-color-burgundy: #68171e;       /* Jouw bordeaux kleur */
    --pm-color-terracotta: #844D43;
    --pm-color-taupe: #B19684;
    --pm-color-gold: #C9A227;
    --pm-color-gold-muted: #B8A068;
    
    /* Neutrals */
    --pm-color-cream: #F9F6F2;
    --pm-color-cream-dark: #F0EBE5;
    --pm-color-white: #FFFFFF;
    
    /* Text */
    --pm-color-text: #3D3630;
    --pm-color-text-light: #6B5F54;
    --pm-color-text-muted: #9A8E82;

    /* Typography */
    --pm-font-display: 'Playfair Display', Georgia, serif;
    --pm-font-serif: 'Cormorant Garamond', Georgia, serif;
    --pm-font-sans: 'Jost', sans-serif;
    --pm-font-script: 'Caveat', cursive;
    --pm-font-handwritten: 'Dancing Script', cursive;

    /* Font Sizes */
    --pm-text-xs: 0.875rem;
    --pm-text-sm: 1rem;
    --pm-text-base: 1.125rem;
    --pm-text-lg: 1.25rem;
    --pm-text-xl: 1.5rem;
    --pm-text-2xl: 1.875rem;
    --pm-text-3xl: 2.5rem;
    --pm-text-4xl: 3.25rem;
    --pm-text-5xl: 4.5rem;

    /* Spacing */
    --pm-space-xs: 0.5rem;
    --pm-space-sm: 1rem;
    --pm-space-md: 1.5rem;
    --pm-space-lg: 2rem;
    --pm-space-xl: 3rem;
    --pm-space-2xl: 5rem;
    --pm-space-3xl: 8rem;

    /* Layout */
    --pm-container-width: 1400px;
    --pm-content-width: 1200px;
    --pm-narrow-width: 800px;

    /* Transitions */
    --pm-transition: 0.3s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--pm-font-sans);
    font-weight: 300;
    font-size: var(--pm-text-base);
    line-height: 1.7;
    color: var(--pm-color-text);
    background-color: var(--pm-color-cream);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--pm-transition);
}

a:hover {
    color: var(--pm-color-burgundy);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pm-font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--pm-color-burgundy-dark);
    margin: 0 0 var(--pm-space-md) 0;
}

h1 { font-size: var(--pm-text-5xl); }
h2 { font-size: var(--pm-text-4xl); }
h3 { font-size: var(--pm-text-3xl); }
h4 { font-size: var(--pm-text-2xl); }

p {
    margin: 0 0 var(--pm-space-md) 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--pm-container-width);
    margin: 0 auto;
    padding: 0 var(--pm-space-lg);
}

.site-main {
    flex: 1;
    padding-top: 94px;
}

.site-main--front-page {
    padding-top: 0;
}

.section {
    padding: var(--pm-space-3xl) 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--pm-color-cream);
    border-bottom: 1px solid var(--pm-color-cream-dark);
    transition: var(--pm-transition);
    overflow: visible;
}

.site-header.scrolled {
    background-color: rgba(249, 246, 242, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(64, 10, 22, 0.08);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: var(--pm-space-sm) var(--pm-space-lg);
    max-width: var(--pm-container-width);
    margin: 0 auto;
}

/* Navigation */
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }

.main-navigation ul {
    display: flex;
    gap: var(--pm-space-xl);
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation a {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pm-color-text);
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--pm-color-burgundy);
    transition: var(--pm-transition);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* Crème cirkel achtergrond voor het uitstekende deel */
.site-logo::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 175px;
    height: 175px;
    background-color: var(--pm-color-cream);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.site-logo img,
.site-logo .custom-logo {
    max-height: 160px;
    width: auto;
    margin-bottom: -50px;
    position: relative;
    z-index: 2;
}

.logo-circle {
    font-family: var(--pm-font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--pm-color-burgundy-dark);
    position: relative;
    z-index: 2;
    margin-bottom: -50px;
}

.site-title-text {
    display: none; /* Alleen zichtbaar op mobiel */
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pm-color-burgundy-dark);
    margin-top: 0;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: var(--pm-space-sm) var(--pm-space-xl);
    border: 1px solid var(--pm-color-burgundy-dark);
    background-color: transparent;
    color: var(--pm-color-burgundy-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

/* Filled button - gedimd standaard, vol on hover */
.btn--filled {
    background-color: rgba(104, 23, 30, 0.7); /* Gedimd bordeaux */
    border: none;
    color: var(--pm-color-cream);
}

.btn--filled::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -6px;
    right: 6px;
    bottom: -6px;
    border: 2px solid var(--pm-color-burgundy);
    border-radius: 10px;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn--filled:hover {
    background-color: var(--pm-color-burgundy); /* Volle kleur on hover */
    border: none;
    color: var(--pm-color-cream);
    transform: translate(-3px, 3px);
}

.btn--filled:hover::before {
    top: 3px;
    left: -3px;
    right: 3px;
    bottom: -3px;
}

/* Outline button met offset lijn erachter */
.btn--outline {
    background-color: var(--pm-color-cream);
    border: 1px solid var(--pm-color-burgundy-dark);
    color: var(--pm-color-burgundy-dark);
}

.btn--outline::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -6px;
    right: 6px;
    bottom: -6px;
    border: 2px solid var(--pm-color-taupe);
    border-radius: 10px;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn--outline:hover {
    background-color: var(--pm-color-cream);
    border-color: var(--pm-color-burgundy);
    color: var(--pm-color-burgundy);
    transform: translate(-3px, 3px);
}

.btn--outline:hover::before {
    top: 3px;
    left: -3px;
    right: 3px;
    bottom: -3px;
}

/* ==========================================================================
   Background Colors
   ========================================================================== */

.pm-bg--cream { background-color: var(--pm-color-cream); }
.pm-bg--cream-dark { background-color: var(--pm-color-cream-dark); }
.pm-bg--white { background-color: var(--pm-color-white); }
.pm-bg--taupe { background-color: var(--pm-color-taupe); }
.pm-bg--burgundy { background-color: var(--pm-color-burgundy); }
.pm-bg--burgundy-dark { background-color: var(--pm-color-burgundy-dark); }

/* Inverse (dark backgrounds) */
.pm-inverse {
    color: var(--pm-color-cream);
}

.pm-inverse h1,
.pm-inverse h2,
.pm-inverse h3,
.pm-inverse h4,
.pm-inverse h5,
.pm-inverse h6 {
    color: var(--pm-color-cream);
}

.pm-inverse .btn {
    border-color: var(--pm-color-cream);
    color: var(--pm-color-cream);
}

.pm-inverse .btn:hover {
    background-color: var(--pm-color-cream);
    color: var(--pm-color-burgundy-dark);
}

.pm-inverse .btn--filled {
    background-color: rgba(249, 246, 242, 0.7); /* Gedimd cream */
    border: none;
    color: var(--pm-color-burgundy-dark);
}

.pm-inverse .btn--filled::before {
    border-color: var(--pm-color-cream);
}

.pm-inverse .btn--filled:hover {
    background-color: var(--pm-color-cream);
    border: none;
    color: var(--pm-color-burgundy-dark);
}

.pm-inverse .btn--outline {
    background-color: transparent;
    border-color: var(--pm-color-cream);
    color: var(--pm-color-cream);
}

.pm-inverse .btn--outline::before {
    border-color: rgba(249, 246, 242, 0.5);
}

.pm-inverse .btn--outline:hover {
    background-color: transparent;
    border-color: var(--pm-color-cream);
    color: var(--pm-color-cream);
}

/* ==========================================================================
   Hero Full Width
   ========================================================================== */

.hero-full {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pm-color-white);
}

.hero-full--height-full { min-height: 100vh; }
.hero-full--height-large { min-height: 80vh; }
.hero-full--height-medium { min-height: 60vh; }
.hero-full--height-small { min-height: 40vh; }

.hero-full__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-full--overlay-none .hero-full__overlay { background: transparent; }
.hero-full--overlay-dark .hero-full__overlay { background: rgba(0, 0, 0, 0.4); }
.hero-full--overlay-burgundy .hero-full__overlay { background: rgba(64, 10, 22, 0.6); }

.hero-full__content {
    position: relative;
    z-index: 2;
    padding: var(--pm-space-2xl) var(--pm-space-lg);
    max-width: var(--pm-narrow-width);
    text-align: center;
}

.hero-full__title {
    font-size: var(--pm-text-5xl);
    font-style: italic;
    margin-bottom: var(--pm-space-md);
}

/* ==========================================================================
   Hero Split
   ========================================================================== */

.hero-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: var(--pm-space-lg);
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--pm-space-xl);
    padding-top: calc(94px + var(--pm-space-xl));
    position: relative;
}

.hero-split__image {
    position: relative;
    transform: translateX(-120px); /* Meer naar links voor ruimte in midden */
}

/* Bordeaux accent */
.hero-split__image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    border-radius: 12px;
    z-index: 1;
}

.hero-split__image--style-border::before {
    border: 4px solid var(--pm-color-burgundy);
    background-color: transparent;
}

.hero-split__image--style-filled::before {
    background-color: var(--pm-color-burgundy);
}

.hero-split__image--style-none::before {
    display: none;
}

.hero-split__image-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 12px;
}

.hero-split__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Aspect Ratios */
.hero-split__image--portrait .hero-split__image-wrapper { aspect-ratio: 3 / 4; }
.hero-split__image--portrait-tall .hero-split__image-wrapper { aspect-ratio: 2 / 3; }
.hero-split__image--square .hero-split__image-wrapper { aspect-ratio: 1 / 1; }
.hero-split__image--landscape .hero-split__image-wrapper { aspect-ratio: 4 / 3; }
.hero-split__image--auto .hero-split__image-wrapper { aspect-ratio: auto; }

.hero-split__placeholder {
    aspect-ratio: 3 / 4;
    background-color: var(--pm-color-cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pm-color-text-muted);
    border-radius: 12px;
}

.hero-split__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Buttons krijgen nu hun eigen breedte */
    justify-content: center;
    padding: var(--pm-space-lg);
    margin-left: -60px; /* Naar links schuiven, dichter bij afbeelding */
}

.hero-split__label {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--pm-color-burgundy);
    margin-bottom: var(--pm-space-xs);
}

.hero-split__title {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-5xl);
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    color: var(--pm-color-burgundy-dark);
    margin-bottom: var(--pm-space-md);
}

/* Titel dikte opties */
.hero-split__title--normal { font-weight: 400; }
.hero-split__title--medium { font-weight: 500; }
.hero-split__title--semibold { font-weight: 600; }
.hero-split__title--bold { font-weight: 700; }

.hero-split__subtitle {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-base);
    line-height: 1.8;
    color: var(--pm-color-text);
    border-left: 2px solid var(--pm-color-taupe);
    padding-left: var(--pm-space-md);
    text-align: justify;
    margin-bottom: var(--pm-space-lg);
}

/* Inverse hero split */
.pm-inverse .hero-split__label { color: var(--pm-color-taupe); }
.pm-inverse .hero-split__title { color: var(--pm-color-cream); }
.pm-inverse .hero-split__subtitle { color: rgba(255,255,255,0.85); border-left-color: var(--pm-color-taupe); }
.pm-inverse .hero-split__image--style-filled::before { background-color: var(--pm-color-cream); }
.pm-inverse .hero-split__image--style-border::before { border-color: var(--pm-color-cream); }

/* ==========================================================================
   Hero met Achtergrond (Hero BG)
   ========================================================================== */

.hero-bg {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 70vh;
    position: relative;
}

.hero-bg--height-full { min-height: 100vh; }
.hero-bg--height-large { min-height: 85vh; }
.hero-bg--height-medium { min-height: 70vh; }

.hero-bg__content {
    display: flex;
    align-items: center;
    padding: calc(94px + var(--pm-space-xl)) var(--pm-space-xl) var(--pm-space-xl);
    /* Links uitlijnen met hero-split afbeelding positie */
    padding-left: max(var(--pm-space-2xl), calc((100vw - 1400px) / 2 + var(--pm-space-xl) - 120px));
    position: relative;
    overflow: visible;
    z-index: 2;
}

.hero-bg__content-inner {
    max-width: 450px;
    position: relative;
    z-index: 2;
}

.hero-bg__label {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--pm-color-burgundy);
    margin-bottom: var(--pm-space-xs);
}

.hero-bg__title {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-4xl);
    font-style: normal;
    line-height: 1.15;
    color: var(--pm-color-burgundy-dark);
    margin-bottom: var(--pm-space-lg);
}

.hero-bg__title--normal { font-weight: 400; }
.hero-bg__title--medium { font-weight: 500; }
.hero-bg__title--semibold { font-weight: 600; }
.hero-bg__title--bold { font-weight: 700; }

.hero-bg__text {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-base);
    line-height: 1.8;
    color: var(--pm-color-text);
    margin-bottom: var(--pm-space-xl);
}

.hero-bg__text p {
    margin-bottom: var(--pm-space-sm);
}

.hero-bg__buttons {
    display: flex;
    gap: var(--pm-space-md);
    flex-wrap: wrap;
}


/* Decorative circle */
.hero-bg__deco-circle {
    position: absolute;
    top: var(--pm-space-xl);
    left: var(--pm-space-lg);
    width: 100px;
    height: 100px;
    border: 1px solid var(--pm-color-taupe);
    border-radius: 50%;
    opacity: 0.3;
}

/* Image side - vloeiend met accent */
.hero-bg__image {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-left: -40px; /* Overlapt licht met content gebied */
}

/* Gradient fade naar achtergrond */
.hero-bg__image-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--pm-color-cream) 0%,
        rgba(249, 246, 242, 0.8) 10%,
        rgba(249, 246, 242, 0.4) 25%,
        transparent 50%
    );
    z-index: 1;
    pointer-events: none;
}

/* Fade kleuren per achtergrond */
.pm-bg--cream .hero-bg__image-fade {
    background: linear-gradient(to right, #F9F6F2 0%, rgba(249, 246, 242, 0.7) 15%, rgba(249, 246, 242, 0.3) 30%, transparent 50%);
}

.pm-bg--cream-dark .hero-bg__image-fade {
    background: linear-gradient(to right, #F0EBE5 0%, rgba(240, 235, 229, 0.7) 15%, rgba(240, 235, 229, 0.3) 30%, transparent 50%);
}

.pm-bg--white .hero-bg__image-fade {
    background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 15%, rgba(255, 255, 255, 0.3) 30%, transparent 50%);
}

.pm-bg--taupe .hero-bg__image-fade {
    background: linear-gradient(to right, #B19684 0%, rgba(177, 150, 132, 0.7) 15%, rgba(177, 150, 132, 0.3) 30%, transparent 50%);
}

.pm-bg--burgundy .hero-bg__image-fade,
.pm-bg--burgundy-dark .hero-bg__image-fade {
    background: linear-gradient(to right, #68171e 0%, rgba(104, 23, 30, 0.7) 15%, rgba(104, 23, 30, 0.3) 30%, transparent 50%);
}

.hero-bg__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: var(--pm-color-cream-dark);
    color: var(--pm-color-text-muted);
}

/* Inverse colors */
.pm-inverse.hero-bg .hero-bg__title,
.pm-inverse.hero-bg .hero-bg__pretitle .pretitle-pm {
    color: var(--pm-color-cream);
}

.pm-inverse.hero-bg .hero-bg__pretitle .pretitle-rest {
    color: var(--pm-color-gold);
}

.pm-inverse.hero-bg .hero-bg__text {
    color: rgba(255, 255, 255, 0.85);
}

.pm-inverse.hero-bg .btn--outline {
    border-color: var(--pm-color-cream);
    color: var(--pm-color-cream);
}

.pm-inverse.hero-bg .btn--outline:hover {
    background-color: var(--pm-color-cream);
    color: var(--pm-color-burgundy-dark);
}

.pm-inverse.hero-bg .hero-bg__deco-circle {
    border-color: var(--pm-color-gold);
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-bg {
        grid-template-columns: 1fr;
        grid-template-rows: auto 50vh;
    }

    .hero-bg__content {
        padding: calc(94px + var(--pm-space-lg)) var(--pm-space-lg) var(--pm-space-xl);
        order: 1;
    }

    .hero-bg__image {
        order: 2;
        min-height: 50vh;
        margin-left: 0;
    }

    .hero-bg__content-inner {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-bg__title {
        font-size: var(--pm-text-3xl);
    }

    .hero-bg__content {
        padding-top: calc(70px + var(--pm-space-md));
    }

    .hero-bg__buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-bg__deco-circle {
        width: 80px;
        height: 80px;
    }
}

/* ==========================================================================
   Two Column
   ========================================================================== */

.two-column-block {
    padding: var(--pm-space-3xl) 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pm-space-2xl);
    align-items: center;
}

.two-column--reverse {
    direction: rtl;
}

.two-column--reverse > * {
    direction: ltr;
}

.two-column__image img {
    border-radius: 8px;
}

.two-column__content h2 {
    margin-bottom: var(--pm-space-sm);
}

.gold-line {
    width: 60px;
    height: 2px;
    background-color: var(--pm-color-gold);
    margin-bottom: var(--pm-space-md);
}

/* ==========================================================================
   Quote Banner
   ========================================================================== */

.quote-banner {
    padding: var(--pm-space-3xl) var(--pm-space-lg);
    text-align: center;
}

.quote-banner__text {
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-3xl);
    font-style: italic;
    line-height: 1.4;
    max-width: var(--pm-narrow-width);
    margin: 0 auto;
}

/* ==========================================================================
   Portfolio Grid
   ========================================================================== */

.portfolio-section {
    padding: var(--pm-space-3xl) 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pm-space-lg);
    margin-top: var(--pm-space-xl);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.portfolio-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-item__image img {
    transform: scale(1.05);
}

.portfolio-item__title {
    font-size: var(--pm-text-lg);
    margin-top: var(--pm-space-sm);
    text-align: center;
}

.section-label {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pm-color-burgundy);
    margin-bottom: var(--pm-space-xs);
}

.section-title {
    margin-bottom: var(--pm-space-sm);
}

/* Standaard stijlen */
.section-title--default {
    font-weight: 400;
    font-style: normal;
}

.section-title--bold {
    font-weight: 700;
    font-style: normal;
}

.section-title--italic {
    font-weight: 400;
    font-style: italic;
}

.section-title--bold-italic {
    font-weight: 700;
    font-style: italic;
}

/* Speelse stijlen (Caveat) */
.section-title--playful {
    font-family: var(--pm-font-script);
    font-size: var(--pm-text-4xl);
    font-weight: 500;
    font-style: normal;
    color: var(--pm-color-burgundy);
    margin-bottom: var(--pm-space-md);
}

.section-title--playful-bold {
    font-family: var(--pm-font-script);
    font-size: var(--pm-text-4xl);
    font-weight: 600;
    font-style: normal;
    color: var(--pm-color-burgundy);
    margin-bottom: var(--pm-space-md);
}

/* Handgeschreven stijlen (Dancing Script) */
.section-title--handwritten {
    font-family: var(--pm-font-handwritten);
    font-size: var(--pm-text-4xl);
    font-weight: 600;
    font-style: normal;
    color: var(--pm-color-burgundy);
    margin-bottom: var(--pm-space-md);
    letter-spacing: 0.02em;
}

.section-title--handwritten-bold {
    font-family: var(--pm-font-handwritten);
    font-size: var(--pm-text-4xl);
    font-weight: 700;
    font-style: normal;
    color: var(--pm-color-burgundy);
    margin-bottom: var(--pm-space-md);
    letter-spacing: 0.02em;
}

/* Inverse kleuren voor donkere achtergronden */
.pm-inverse .section-title--playful,
.pm-inverse .section-title--playful-bold,
.pm-inverse .section-title--handwritten,
.pm-inverse .section-title--handwritten-bold {
    color: var(--pm-color-gold);
}

.portfolio-section__footer {
    text-align: center;
    margin-top: var(--pm-space-xl);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */

.services-grid-section {
    padding: var(--pm-space-3xl) 0;
}

/* Sectie breedte opties */
.services-grid-section--width-normal .container {
    max-width: var(--pm-container-width);
}

.services-grid-section--width-small .container {
    max-width: var(--pm-content-width);
}

.services-grid-section--width-extra-small .container {
    max-width: var(--pm-narrow-width);
}

.services-grid-section--width-full .container {
    max-width: 100%;
    padding: 0 var(--pm-space-lg);
}

/* Tekst uitlijning */
.services-grid-section--text-center .services-grid-section__header {
    text-align: center;
}

.services-grid-section--text-center .section-label {
    text-align: center;
}

.services-grid-section--text-left .services-grid-section__header {
    text-align: left;
}

.services-grid-section__header {
    margin-bottom: var(--pm-space-xl);
}

/* Header width variations (desktop only) */
.services-grid-section__header--width-full {
    max-width: 100%;
}

.services-grid-section__header--width-75 {
    max-width: 75%;
}

.services-grid-section__header--width-66 {
    max-width: 66.666%;
}

.services-grid-section__header--width-50 {
    max-width: 50%;
}

/* Centered header needs auto margins */
.services-grid-section--text-center .services-grid-section__header--width-75,
.services-grid-section--text-center .services-grid-section__header--width-66,
.services-grid-section--text-center .services-grid-section__header--width-50 {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .services-grid-section__header--width-75,
    .services-grid-section__header--width-66,
    .services-grid-section__header--width-50 {
        max-width: 100%;
    }
}

.services-grid-section__intro {
    margin-top: var(--pm-space-md);
}

.services-grid-section--text-center .services-grid-section__intro {
    max-width: var(--pm-content-width);
    margin-left: auto;
    margin-right: auto;
}

.services-grid-section--text-left .services-grid-section__intro {
    max-width: var(--pm-content-width);
}

.services-grid-section__intro p {
    font-size: var(--pm-text-lg);
    line-height: 1.7;
    color: var(--pm-color-text-light);
    margin: 0;
}

/* Content uitlijning */
.services-grid-section--content-center .services-grid {
    justify-items: center;
}

.services-grid-section--content-center .services-grid__item {
    text-align: center;
}

.services-grid-section--content-left .services-grid__item {
    text-align: left;
}

.services-grid-section--content-left .services-grid__icon {
    margin-left: 0;
    margin-right: auto;
}

.services-grid-section--content-left .services-grid__title,
.services-grid-section--content-left .services-grid__text {
    text-align: left;
}

.services-grid {
    display: grid;
    gap: var(--pm-space-xl);
}

.services-grid--1-cols {
    grid-template-columns: 1fr;
    max-width: var(--pm-narrow-width);
    margin-left: auto;
    margin-right: auto;
}

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

.services-grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.services-grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.services-grid__item {
    padding: var(--pm-space-lg);
    background-color: transparent;
    border-radius: 0;
    transition: transform var(--pm-transition);
    text-align: center;
}

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

.services-grid__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--pm-space-md);
    color: var(--pm-color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icoon kleur opties */
.services-grid__icon--gold {
    color: var(--pm-color-gold);
}

.services-grid__icon--burgundy {
    color: var(--pm-color-burgundy);
}

.services-grid__icon--burgundy-dark {
    color: var(--pm-color-burgundy-dark);
}

.services-grid__icon--taupe {
    color: var(--pm-color-taupe);
}

.services-grid__icon--terracotta {
    color: var(--pm-color-terracotta);
}

.services-grid__icon svg {
    width: 100%;
    height: 100%;
}

.services-grid__title {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-xl);
    font-weight: 500;
    color: var(--pm-color-burgundy-dark);
    margin-bottom: var(--pm-space-sm);
}

.services-grid__text {
    font-size: var(--pm-text-base);
    line-height: 1.7;
    color: var(--pm-color-text-light);
}

.services-grid__text p {
    margin: 0;
}

/* Inverse styling voor donkere achtergronden */
.pm-inverse .services-grid__icon {
    color: var(--pm-color-gold);
}

.pm-inverse .services-grid__title {
    color: var(--pm-color-cream);
}

.pm-inverse .services-grid__text {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Pricing Packages Section
   ========================================================================== */

.pricing-packages-section {
    padding: var(--pm-space-3xl) 0;
}

.pricing-packages-section__header {
    text-align: center;
    margin-bottom: var(--pm-space-xl);
    max-width: var(--pm-content-width);
    margin-left: auto;
    margin-right: auto;
}

.pricing-packages-section__intro {
    margin-top: var(--pm-space-sm);
}

.pricing-packages-section__intro p {
    font-size: var(--pm-text-lg);
    line-height: 1.7;
    color: var(--pm-color-text-light);
    margin: 0;
}

/* Pricing Grid */
.pricing-packages {
    display: grid;
    gap: var(--pm-space-md);
    align-items: stretch;
}

.pricing-packages--2-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-packages--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-packages--4-cols {
    grid-template-columns: repeat(4, 1fr);
}

/* Package Card */
.pricing-package {
    display: flex;
    flex-direction: column;
    background: var(--pm-color-white);
    border-radius: 8px;
    padding: var(--pm-space-lg) var(--pm-space-md);
    position: relative;
    transition: transform var(--pm-transition), box-shadow var(--pm-transition);
}

.pricing-package:hover {
    transform: translateY(-4px);
}

/* Card Styles */
.pricing-packages-section--style-elegant .pricing-package {
    border: 1px solid var(--pm-color-border);
}

.pricing-packages-section--style-elegant .pricing-package:hover {
    border-color: var(--pm-color-gold);
}

.pricing-packages-section--style-shadow .pricing-package {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-packages-section--style-shadow .pricing-package:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-packages-section--style-filled .pricing-package {
    background: var(--pm-color-cream);
}

.pricing-packages-section--style-filled .pricing-package:hover {
    background: var(--pm-color-cream-dark);
}

/* Transparent style met offset border */
.pricing-packages-section--style-transparent .pricing-packages {
    overflow: visible;
}

.pricing-packages-section--style-transparent .pricing-package {
    background: transparent;
    border: 1px solid var(--pm-color-burgundy-dark);
    border-radius: 8px;
    overflow: visible;
    position: relative;
    transition: transform var(--pm-transition);
}

.pricing-packages-section--style-transparent .pricing-package::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -8px;
    right: 8px;
    bottom: -8px;
    border: 2px solid var(--pm-color-taupe);
    border-radius: 10px;
    z-index: 0;
    pointer-events: none;
    display: block;
    transition: top var(--pm-transition), left var(--pm-transition), right var(--pm-transition), bottom var(--pm-transition);
}

.pricing-packages-section--style-transparent .pricing-package > * {
    position: relative;
    z-index: 1;
}

.pricing-packages-section--style-transparent .pricing-package:hover {
    transform: translate(-4px, 4px);
}

.pricing-packages-section--style-transparent .pricing-package:hover::before {
    top: 4px;
    left: -4px;
    right: 4px;
    bottom: -4px;
}

.pricing-packages-section--style-transparent .pricing-package__header,
.pricing-packages-section--style-transparent .pricing-package__footer {
    border-color: var(--pm-color-taupe);
}

/* Transparent featured card */
.pricing-packages-section--style-transparent .pricing-package--featured {
    border-color: var(--pm-color-gold);
}

.pricing-packages-section--style-transparent .pricing-package--featured::before {
    border-color: var(--pm-color-burgundy);
}

/* Transparent style - simpele tekst knoppen met pijl */
.pricing-packages-section--style-transparent .pricing-package .btn {
    background: transparent;
    border: none;
    padding: 0;
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--pm-color-burgundy-dark);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--pm-space-xs);
    width: auto;
}

.pricing-packages-section--style-transparent .pricing-package .btn::before {
    display: none;
}

.pricing-packages-section--style-transparent .pricing-package .btn::after {
    content: '→';
    font-size: 1.1em;
    transition: transform var(--pm-transition);
}

.pricing-packages-section--style-transparent .pricing-package .btn span {
    position: relative;
}

.pricing-packages-section--style-transparent .pricing-package .btn span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--pm-color-burgundy);
    transition: width var(--pm-transition);
}

.pricing-packages-section--style-transparent .pricing-package .btn:hover {
    background: transparent;
    color: var(--pm-color-burgundy);
    transform: none;
}

.pricing-packages-section--style-transparent .pricing-package .btn:hover::after {
    transform: translateX(4px);
}

.pricing-packages-section--style-transparent .pricing-package .btn:hover span::after {
    width: 100%;
}

/* Featured Package */
.pricing-package--featured {
    border: 2px solid var(--pm-color-gold) !important;
    transform: scale(1.02);
    z-index: 1;
}

.pricing-package--featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-package__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pm-color-gold);
    color: var(--pm-color-burgundy-dark);
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Package Header */
.pricing-package__header {
    text-align: center;
    padding-bottom: var(--pm-space-sm);
    border-bottom: 1px solid var(--pm-color-border);
    margin-bottom: var(--pm-space-sm);
}

.pricing-package__title {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-2xl);
    font-weight: 500;
    color: var(--pm-color-burgundy-dark);
    margin: 0 0 var(--pm-space-xs) 0;
    min-height: 2.4em;
}

.pricing-package__subtitle {
    font-size: var(--pm-text-sm);
    color: var(--pm-color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Features List */
.pricing-package__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--pm-space-md) 0;
    flex-grow: 1;
}

.pricing-package__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--pm-space-xs);
    padding: 3px 0;
    font-size: var(--pm-text-sm);
    color: var(--pm-color-text);
    line-height: 1.5;
}

.pricing-package__check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--pm-color-gold);
    margin-top: 2px;
}

.pricing-package__feature-text {
    flex: 1;
}

.pricing-package__feature-note {
    display: block;
    font-size: var(--pm-text-xs);
    color: var(--pm-color-text-light);
    font-style: italic;
    margin-top: 2px;
}

/* Package Footer (Price & Button) */
.pricing-package__footer {
    text-align: center;
    margin-top: auto;
    padding-top: var(--pm-space-sm);
    border-top: 1px solid var(--pm-color-border);
}

.pricing-package__price-wrapper {
    margin-bottom: var(--pm-space-sm);
}

.pricing-package__price {
    display: block;
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-xl);
    font-weight: 600;
    color: var(--pm-color-burgundy-dark);
    line-height: 1.2;
}

.pricing-package__price-suffix {
    display: block;
    font-size: var(--pm-text-xs);
    color: var(--pm-color-text-light);
    margin-top: 4px;
}

.pricing-package .btn {
    width: 100%;
}

.pricing-package .btn--outline {
    border-color: var(--pm-color-burgundy);
    color: var(--pm-color-burgundy);
}

.pricing-package .btn--outline:hover {
    background: var(--pm-color-burgundy);
    color: var(--pm-color-white);
}

/* Inverse styling voor donkere achtergronden */
.pm-inverse .pricing-package {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.pm-inverse .pricing-package__title {
    color: var(--pm-color-cream);
}

.pm-inverse .pricing-package__subtitle,
.pm-inverse .pricing-package__feature {
    color: rgba(255, 255, 255, 0.9);
}

.pm-inverse .pricing-package__price {
    color: var(--pm-color-gold);
}

.pm-inverse .pricing-package__header,
.pm-inverse .pricing-package__footer {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Transparent style op donkere achtergrond */
.pm-inverse.pricing-packages-section--style-transparent .pricing-package {
    border-color: var(--pm-color-cream);
}

.pm-inverse.pricing-packages-section--style-transparent .pricing-package::before {
    border-color: rgba(249, 246, 242, 0.4);
}

.pm-inverse.pricing-packages-section--style-transparent .pricing-package--featured {
    border-color: var(--pm-color-gold);
}

.pm-inverse.pricing-packages-section--style-transparent .pricing-package--featured::before {
    border-color: rgba(249, 246, 242, 0.6);
}

/* Transparent style knoppen op donkere achtergrond */
.pm-inverse.pricing-packages-section--style-transparent .pricing-package .btn {
    color: var(--pm-color-cream);
}

.pm-inverse.pricing-packages-section--style-transparent .pricing-package .btn span::after {
    background-color: var(--pm-color-cream);
}

.pm-inverse.pricing-packages-section--style-transparent .pricing-package .btn:hover {
    color: var(--pm-color-gold);
}

.pm-inverse.pricing-packages-section--style-transparent .pricing-package .btn:hover span::after {
    background-color: var(--pm-color-gold);
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */

.contact-form-section {
    padding: var(--pm-space-3xl) 0;
}

.contact-form-section__grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--pm-space-2xl);
    align-items: start;
}

.contact-form-section--stacked .contact-form-section__grid {
    grid-template-columns: 1fr;
    max-width: var(--pm-narrow-width);
    margin: 0 auto;
    text-align: center;
}

.contact-form-section--stacked .contact-form-section__content {
    margin-bottom: var(--pm-space-xl);
}

.contact-form-section__form-only {
    max-width: var(--pm-narrow-width);
    margin: 0 auto;
    text-align: center;
}

.contact-form-section__form-only .section-title {
    margin-bottom: var(--pm-space-xl);
}

.contact-form-section__content .section-label {
    margin-bottom: var(--pm-space-xs);
}

.contact-form-section__content .section-title {
    margin-bottom: var(--pm-space-md);
}

.contact-form-section__text {
    font-size: var(--pm-text-base);
    line-height: 1.8;
    color: var(--pm-color-text-light);
    margin-bottom: var(--pm-space-lg);
}

.contact-form-section__text p {
    margin-bottom: var(--pm-space-sm);
}

.contact-form-section__info {
    margin-top: var(--pm-space-lg);
}

/* Afbeelding in contact sectie */
.contact-form-section__image {
    margin-top: var(--pm-space-xl);
    position: relative;
}

.contact-form-section__image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    right: 15px;
    bottom: -15px;
    border: 3px solid var(--pm-color-burgundy);
    border-radius: 12px;
    z-index: 1;
}

.contact-form-section__image-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 12px;
}

.contact-form-section__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--pm-space-sm);
    margin-bottom: var(--pm-space-sm);
}

.contact-info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--pm-color-burgundy);
    margin-top: 2px;
}

.contact-info-item a,
.contact-info-item span {
    color: var(--pm-color-text);
    font-size: var(--pm-text-sm);
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--pm-color-burgundy);
}

/* Form styling */
.contact-form-section__form {
    background-color: transparent;
    padding: 0;
}

.contact-form-section__placeholder {
    color: var(--pm-color-text-light);
    font-style: italic;
    text-align: center;
    padding: var(--pm-space-xl);
    border: 1px dashed var(--pm-color-taupe);
    border-radius: var(--pm-radius-md);
}

/* Form input styling */
.contact-form-section__form input[type="text"],
.contact-form-section__form input[type="email"],
.contact-form-section__form input[type="tel"],
.contact-form-section__form input[type="url"],
.contact-form-section__form textarea,
.contact-form-section__form select {
    width: 100%;
    padding: var(--pm-space-sm) var(--pm-space-md);
    border: 1px solid var(--pm-color-taupe);
    border-radius: 10px;
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    background-color: transparent;
    color: var(--pm-color-text);
    transition: var(--pm-transition);
    margin-bottom: var(--pm-space-md);
}

.contact-form-section__form input:focus,
.contact-form-section__form textarea:focus,
.contact-form-section__form select:focus {
    outline: none;
    border-color: var(--pm-color-burgundy);
    background-color: rgba(255, 255, 255, 0.5);
}

.contact-form-section__form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Select dropdown styling */
.contact-form-section__form select,
.wpcf7-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2368171e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--pm-space-md) center;
    padding-right: var(--pm-space-2xl);
    cursor: pointer;
}

.contact-form-section__form label {
    display: block;
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pm-color-burgundy-dark);
    margin-bottom: var(--pm-space-xs);
}

.contact-form-section__form input[type="submit"],
.contact-form-section__form button[type="submit"] {
    display: inline-block;
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: var(--pm-space-sm) var(--pm-space-2xl);
    background-color: rgba(104, 23, 30, 0.7);
    border: none;
    color: var(--pm-color-cream);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin-top: var(--pm-space-sm);
    position: relative;
    z-index: 1;
}

.contact-form-section__form input[type="submit"]::before,
.contact-form-section__form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -6px;
    right: 6px;
    bottom: -6px;
    border: 2px solid var(--pm-color-burgundy);
    border-radius: 10px;
    z-index: -1;
    transition: all 0.3s ease;
}

.contact-form-section__form input[type="submit"]:hover,
.contact-form-section__form button[type="submit"]:hover {
    background-color: var(--pm-color-burgundy);
    color: var(--pm-color-cream);
    transform: translate(-3px, 3px);
}

.contact-form-section__form input[type="submit"]:hover::before,
.contact-form-section__form button[type="submit"]:hover::before {
    top: 3px;
    left: -3px;
    right: 3px;
    bottom: -3px;
}

/* Gravity Forms specifieke styling */
.contact-form-section__form .gform_wrapper {
    margin: 0;
}

.contact-form-section__form .gfield {
    margin-bottom: var(--pm-space-md);
}

.contact-form-section__form .gfield_label {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contact Form 7 specifieke styling */
.contact-form-section__form .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-section__form .wpcf7 {
    margin: 0;
}

/* CF7 Row layout */
.cf7-row {
    margin-bottom: var(--pm-space-md);
}

.cf7-row label {
    display: block;
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pm-color-burgundy-dark);
    margin-bottom: var(--pm-space-xs);
}

.cf7-row .wpcf7-form-control-wrap {
    display: block;
    margin-top: var(--pm-space-xs);
}

/* Two column row */
.cf7-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pm-space-md);
}

.cf7-col {
    width: 100%;
}

/* Input styling */
.cf7-row input[type="text"],
.cf7-row input[type="email"],
.cf7-row input[type="tel"],
.cf7-row input[type="url"],
.cf7-row textarea,
.cf7-row select {
    width: 100%;
    padding: var(--pm-space-sm) var(--pm-space-md);
    border: 1px solid var(--pm-color-taupe);
    border-radius: 10px;
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    background-color: transparent;
    color: var(--pm-color-text);
    transition: var(--pm-transition);
    margin: 0;
}

.cf7-row input:focus,
.cf7-row textarea:focus,
.cf7-row select:focus {
    outline: none;
    border-color: var(--pm-color-burgundy);
    background-color: rgba(255, 255, 255, 0.5);
}

.cf7-row textarea {
    min-height: 100px;
    resize: vertical;
}

.cf7-row select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A0D14' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--pm-space-md) center;
    padding-right: var(--pm-space-2xl);
    cursor: pointer;
}

/* Submit button */
.cf7-row--submit {
    margin-top: var(--pm-space-lg);
    text-align: left;
}

.cf7-row--submit p {
    display: inline-block;
}

/* Ensure CF7 submit doesn't go full width */
.wpcf7-form p:has(input[type="submit"]) {
    display: inline-block;
}

.contact-form-section__form .wpcf7-form > p:last-child {
    display: inline-block;
    margin-top: var(--pm-space-md);
}

.cf7-row input[type="submit"],
.cf7-row button[type="submit"],
.wpcf7-submit,
input.wpcf7-submit {
    display: inline-block !important;
    font-family: var(--pm-font-sans) !important;
    font-size: var(--pm-text-xs) !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: var(--pm-space-sm) var(--pm-space-2xl) !important;
    background-color: rgba(104, 23, 30, 0.7) !important;
    border: none !important;
    color: var(--pm-color-cream) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px !important;
    width: auto !important;
    max-width: fit-content;
    position: relative;
    z-index: 1;
}

.cf7-row input[type="submit"]::before,
.cf7-row button[type="submit"]::before,
.wpcf7-submit::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -6px;
    right: 6px;
    bottom: -6px;
    border: 2px solid var(--pm-color-burgundy);
    border-radius: 10px;
    z-index: -1;
    transition: all 0.3s ease;
}

.cf7-row input[type="submit"]:hover,
.cf7-row button[type="submit"]:hover,
.wpcf7-submit:hover {
    background-color: var(--pm-color-burgundy);
    color: var(--pm-color-cream);
    transform: translate(-3px, 3px);
}

.cf7-row input[type="submit"]:hover::before,
.cf7-row button[type="submit"]:hover::before,
.wpcf7-submit:hover::before {
    top: 3px;
    left: -3px;
    right: 3px;
    bottom: -3px;
}

/* Validation styling */
.wpcf7-not-valid {
    border-color: #c0392b !important;
}

.wpcf7-not-valid-tip {
    color: #c0392b;
    font-size: var(--pm-text-xs);
    margin-top: var(--pm-space-xs);
    display: block;
}

.wpcf7-response-output {
    margin: var(--pm-space-md) 0 0 0 !important;
    padding: var(--pm-space-sm) var(--pm-space-md) !important;
    border-radius: var(--pm-radius-sm);
    font-size: var(--pm-text-sm);
}

.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    border-color: #c3e6cb !important;
    color: #155724;
}

.wpcf7-validation-errors,
.wpcf7-spam-blocked {
    background-color: #f8d7da;
    border-color: #f5c6cb !important;
    color: #721c24;
}

/* Placeholder styling */
.cf7-row input::placeholder,
.cf7-row textarea::placeholder {
    color: var(--pm-color-text-light);
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 600px) {
    .cf7-row--half {
        grid-template-columns: 1fr;
    }
}

/* Inverse styling voor donkere achtergronden */
.pm-inverse .contact-form-section__text {
    color: rgba(255, 255, 255, 0.9);
}

.pm-inverse .contact-info-icon {
    color: var(--pm-color-gold);
}

.pm-inverse .contact-info-item a,
.pm-inverse .contact-info-item span {
    color: var(--pm-color-cream);
}

.pm-inverse .contact-info-item a:hover {
    color: var(--pm-color-gold);
}

/* ==========================================================================
   Gallery Collage (Mondrian Style)
   ========================================================================== */

.gallery-collage-section {
    padding: var(--pm-space-3xl) 0;
}

.gallery-collage__header {
    text-align: center;
    margin-bottom: var(--pm-space-2xl);
}

.gallery-collage__intro {
    font-size: var(--pm-text-lg);
    color: var(--pm-color-text-light);
    max-width: 600px;
    margin: var(--pm-space-md) auto 0;
}

/* Mondrian Grid Layout */
.gallery-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 160px);
    gap: 4px;
    border-radius: 12px;
    overflow: hidden;
}

/* =================================
   LAYOUT: 3 afbeeldingen
   ================================= */
.gallery-collage--count-3 {
    grid-template-rows: repeat(4, 160px);
}
.gallery-collage--count-3 .gallery-collage__item:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 5;
}
.gallery-collage--count-3 .gallery-collage__item:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
}
.gallery-collage--count-3 .gallery-collage__item:nth-child(3) {
    grid-column: 7 / 13;
    grid-row: 3 / 5;
}

/* =================================
   LAYOUT: 4 afbeeldingen
   ================================= */
.gallery-collage--count-4 {
    grid-template-rows: repeat(4, 160px);
}
.gallery-collage--count-4 .gallery-collage__item:nth-child(1) {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
}
.gallery-collage--count-4 .gallery-collage__item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 3;
}
.gallery-collage--count-4 .gallery-collage__item:nth-child(3) {
    grid-column: 1 / 5;
    grid-row: 3 / 5;
}
.gallery-collage--count-4 .gallery-collage__item:nth-child(4) {
    grid-column: 5 / 13;
    grid-row: 3 / 5;
}

/* =================================
   LAYOUT: 5 afbeeldingen
   ================================= */
.gallery-collage--count-5 {
    grid-template-rows: repeat(4, 160px);
}
.gallery-collage--count-5 .gallery-collage__item:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 5;
}
.gallery-collage--count-5 .gallery-collage__item:nth-child(2) {
    grid-column: 6 / 9;
    grid-row: 1 / 3;
}
.gallery-collage--count-5 .gallery-collage__item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
}
.gallery-collage--count-5 .gallery-collage__item:nth-child(4) {
    grid-column: 6 / 10;
    grid-row: 3 / 5;
}
.gallery-collage--count-5 .gallery-collage__item:nth-child(5) {
    grid-column: 10 / 13;
    grid-row: 3 / 5;
}

/* =================================
   LAYOUT: 6 afbeeldingen
   ================================= */
.gallery-collage--count-6 {
    grid-template-rows: repeat(5, 140px);
}
.gallery-collage--count-6 .gallery-collage__item:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 4;
}
.gallery-collage--count-6 .gallery-collage__item:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
}
.gallery-collage--count-6 .gallery-collage__item:nth-child(3) {
    grid-column: 7 / 13;
    grid-row: 3 / 4;
}
.gallery-collage--count-6 .gallery-collage__item:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 4 / 6;
}
.gallery-collage--count-6 .gallery-collage__item:nth-child(5) {
    grid-column: 5 / 9;
    grid-row: 4 / 6;
}
.gallery-collage--count-6 .gallery-collage__item:nth-child(6) {
    grid-column: 9 / 13;
    grid-row: 4 / 6;
}

/* =================================
   LAYOUT: 7 afbeeldingen
   ================================= */
.gallery-collage--count-7 {
    grid-template-rows: repeat(5, 140px);
}
.gallery-collage--count-7 .gallery-collage__item:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 4;
}
.gallery-collage--count-7 .gallery-collage__item:nth-child(2) {
    grid-column: 6 / 9;
    grid-row: 1 / 2;
}
.gallery-collage--count-7 .gallery-collage__item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
}
.gallery-collage--count-7 .gallery-collage__item:nth-child(4) {
    grid-column: 6 / 9;
    grid-row: 2 / 4;
}
.gallery-collage--count-7 .gallery-collage__item:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: 3 / 4;
}
.gallery-collage--count-7 .gallery-collage__item:nth-child(6) {
    grid-column: 1 / 5;
    grid-row: 4 / 6;
}
.gallery-collage--count-7 .gallery-collage__item:nth-child(7) {
    grid-column: 5 / 13;
    grid-row: 4 / 6;
}

/* =================================
   LAYOUT: 8 afbeeldingen (default)
   ================================= */
.gallery-collage--count-8 .gallery-collage__item:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 4;
}
.gallery-collage--count-8 .gallery-collage__item:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1 / 2;
}
.gallery-collage--count-8 .gallery-collage__item:nth-child(3) {
    grid-column: 7 / 10;
    grid-row: 2 / 4;
}
.gallery-collage--count-8 .gallery-collage__item:nth-child(4) {
    grid-column: 10 / 13;
    grid-row: 2 / 4;
}
.gallery-collage--count-8 .gallery-collage__item:nth-child(5) {
    grid-column: 1 / 4;
    grid-row: 4 / 7;
}
.gallery-collage--count-8 .gallery-collage__item:nth-child(6) {
    grid-column: 4 / 7;
    grid-row: 4 / 5;
}
.gallery-collage--count-8 .gallery-collage__item:nth-child(7) {
    grid-column: 4 / 7;
    grid-row: 5 / 7;
}
.gallery-collage--count-8 .gallery-collage__item:nth-child(8) {
    grid-column: 7 / 13;
    grid-row: 4 / 7;
}

/* Item styling - GEEN border-radius op individuele items */
.gallery-collage__item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

.gallery-collage__image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-collage__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

/* Hover effect */
.gallery-collage__item:hover .gallery-collage__image-wrapper img {
    transform: scale(1.05);
}

/* Overlay */
.gallery-collage__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(74, 13, 20, 0.95) 0%,
        rgba(74, 13, 20, 0.7) 40%,
        rgba(74, 13, 20, 0.3) 70%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: var(--pm-space-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-collage__item:hover .gallery-collage__overlay {
    opacity: 0.6;
}

/* Active state (on click) */
.gallery-collage__item.is-active .gallery-collage__overlay {
    opacity: 1;
}

.gallery-collage__item.is-active .gallery-collage__image-wrapper img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* Content */
.gallery-collage__content {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.gallery-collage__item.is-active .gallery-collage__content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-collage__title {
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-xl);
    font-weight: 500;
    color: var(--pm-color-cream);
    margin-bottom: var(--pm-space-xs);
}

.gallery-collage__text {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-collage--count-3,
    .gallery-collage--count-4,
    .gallery-collage--count-5 {
        grid-template-rows: repeat(4, 130px);
    }
    .gallery-collage--count-6,
    .gallery-collage--count-7 {
        grid-template-rows: repeat(5, 115px);
    }
    .gallery-collage--count-8 {
        grid-template-rows: repeat(6, 110px);
    }
}

@media (max-width: 768px) {
    .gallery-collage {
        grid-template-columns: repeat(6, 1fr);
        gap: 3px;
        border-radius: 8px;
    }
    
    /* 3 afbeeldingen - mobiel */
    .gallery-collage--count-3 {
        grid-template-rows: repeat(4, 100px);
    }
    .gallery-collage--count-3 .gallery-collage__item:nth-child(1) {
        grid-column: 1 / 7;
        grid-row: 1 / 3;
    }
    .gallery-collage--count-3 .gallery-collage__item:nth-child(2) {
        grid-column: 1 / 4;
        grid-row: 3 / 5;
    }
    .gallery-collage--count-3 .gallery-collage__item:nth-child(3) {
        grid-column: 4 / 7;
        grid-row: 3 / 5;
    }
    
    /* 4 afbeeldingen - mobiel */
    .gallery-collage--count-4 {
        grid-template-rows: repeat(4, 100px);
    }
    .gallery-collage--count-4 .gallery-collage__item:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }
    .gallery-collage--count-4 .gallery-collage__item:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 3;
    }
    .gallery-collage--count-4 .gallery-collage__item:nth-child(3) {
        grid-column: 1 / 4;
        grid-row: 3 / 5;
    }
    .gallery-collage--count-4 .gallery-collage__item:nth-child(4) {
        grid-column: 4 / 7;
        grid-row: 3 / 5;
    }
    
    /* 5 afbeeldingen - mobiel */
    .gallery-collage--count-5 {
        grid-template-rows: repeat(5, 90px);
    }
    .gallery-collage--count-5 .gallery-collage__item:nth-child(1) {
        grid-column: 1 / 7;
        grid-row: 1 / 3;
    }
    .gallery-collage--count-5 .gallery-collage__item:nth-child(2) {
        grid-column: 1 / 3;
        grid-row: 3 / 5;
    }
    .gallery-collage--count-5 .gallery-collage__item:nth-child(3) {
        grid-column: 3 / 7;
        grid-row: 3 / 5;
    }
    .gallery-collage--count-5 .gallery-collage__item:nth-child(4) {
        grid-column: 1 / 4;
        grid-row: 5 / 6;
    }
    .gallery-collage--count-5 .gallery-collage__item:nth-child(5) {
        grid-column: 4 / 7;
        grid-row: 5 / 6;
    }
    
    /* 6 afbeeldingen - mobiel */
    .gallery-collage--count-6 {
        grid-template-rows: repeat(6, 85px);
    }
    .gallery-collage--count-6 .gallery-collage__item:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }
    .gallery-collage--count-6 .gallery-collage__item:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 3;
    }
    .gallery-collage--count-6 .gallery-collage__item:nth-child(3) {
        grid-column: 1 / 7;
        grid-row: 3 / 5;
    }
    .gallery-collage--count-6 .gallery-collage__item:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 5 / 7;
    }
    .gallery-collage--count-6 .gallery-collage__item:nth-child(5) {
        grid-column: 3 / 5;
        grid-row: 5 / 7;
    }
    .gallery-collage--count-6 .gallery-collage__item:nth-child(6) {
        grid-column: 5 / 7;
        grid-row: 5 / 7;
    }
    
    /* 7+ afbeeldingen - mobiel */
    .gallery-collage--count-7,
    .gallery-collage--count-8 {
        grid-template-rows: repeat(7, 80px);
    }
    .gallery-collage--count-7 .gallery-collage__item:nth-child(1),
    .gallery-collage--count-8 .gallery-collage__item:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }
    .gallery-collage--count-7 .gallery-collage__item:nth-child(2),
    .gallery-collage--count-8 .gallery-collage__item:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 3;
    }
    .gallery-collage--count-7 .gallery-collage__item:nth-child(3),
    .gallery-collage--count-8 .gallery-collage__item:nth-child(3) {
        grid-column: 1 / 7;
        grid-row: 3 / 5;
    }
    .gallery-collage--count-7 .gallery-collage__item:nth-child(4),
    .gallery-collage--count-8 .gallery-collage__item:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 5 / 7;
    }
    .gallery-collage--count-7 .gallery-collage__item:nth-child(5),
    .gallery-collage--count-8 .gallery-collage__item:nth-child(5) {
        grid-column: 3 / 7;
        grid-row: 5 / 7;
    }
    .gallery-collage--count-7 .gallery-collage__item:nth-child(6),
    .gallery-collage--count-8 .gallery-collage__item:nth-child(6) {
        grid-column: 1 / 4;
        grid-row: 7 / 8;
    }
    .gallery-collage--count-7 .gallery-collage__item:nth-child(7),
    .gallery-collage--count-8 .gallery-collage__item:nth-child(7) {
        grid-column: 4 / 7;
        grid-row: 7 / 8;
    }
    .gallery-collage--count-8 .gallery-collage__item:nth-child(8) {
        display: none;
    }
    
    .gallery-collage__overlay {
        padding: var(--pm-space-md);
    }
    
    .gallery-collage__title {
        font-size: var(--pm-text-lg);
    }
}

@media (max-width: 480px) {
    .gallery-collage--count-3,
    .gallery-collage--count-4 {
        grid-template-rows: repeat(4, 85px);
    }
    .gallery-collage--count-5 {
        grid-template-rows: repeat(5, 75px);
    }
    .gallery-collage--count-6 {
        grid-template-rows: repeat(6, 70px);
    }
    .gallery-collage--count-7,
    .gallery-collage--count-8 {
        grid-template-rows: repeat(7, 65px);
    }
    .gallery-collage {
        gap: 2px;
    }
}

/* ==========================================================================
   Blog Collage (Mondrian Style)
   ========================================================================== */

.blog-collage-section {
    padding: var(--pm-space-lg) 0 var(--pm-space-2xl);
}

.blog-collage__header {
    margin-bottom: var(--pm-space-2xl);
}

/* Header width variations */
.blog-collage__header--width-full {
    max-width: 100%;
}

.blog-collage__header--width-75 {
    max-width: 75%;
}

.blog-collage__header--width-66 {
    max-width: 66.666%;
}

.blog-collage__header--width-50 {
    max-width: 50%;
}

/* Text alignment */
.blog-collage-section--text-center .blog-collage__header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.blog-collage-section--text-left .blog-collage__header {
    text-align: left;
}

.blog-collage__intro {
    font-size: var(--pm-text-lg);
    color: var(--pm-color-text-light);
    margin-top: var(--pm-space-md);
}

.blog-collage__intro p {
    margin: 0;
}

.blog-collage-section--text-center .blog-collage__intro {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Collage Grid Layout */
.blog-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 32px;
    border-radius: 12px;
    overflow: visible;
}

/* =================================
   BLOG LAYOUT: 3 berichten
   ================================= */
.blog-collage--count-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: start;
}
/* 1: links groot (portrait) */
.blog-collage--count-3 .blog-collage__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}
/* 2: rechtsboven (landscape) */
.blog-collage--count-3 .blog-collage__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}
/* 3: rechts lang (portrait) - content box bovenaan */
.blog-collage--count-3 .blog-collage__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/* =================================
   BLOG LAYOUT: 4 berichten (zigzag patroon)
   ================================= */
.blog-collage--count-4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    align-items: start;
}
/* 1: linksboven (groot portrait) */
.blog-collage--count-4 .blog-collage__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}
/* 2: rechtsboven (landscape) */
.blog-collage--count-4 .blog-collage__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}
/* 3: rechts lang (portrait) */
.blog-collage--count-4 .blog-collage__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2 / 4;
}
/* 4: linksonder (portrait) */
.blog-collage--count-4 .blog-collage__item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
}

/* 4 items verhoudingen zoals tekening */
/* Item 1: groot portrait linksboven */
.blog-collage--count-4 .blog-collage__item:nth-child(1) .blog-collage__image-wrapper {
    aspect-ratio: 4 / 5;
}
/* Item 2: kleiner vierkant/landscape rechtsboven */
.blog-collage--count-4 .blog-collage__item:nth-child(2) .blog-collage__image-wrapper {
    aspect-ratio: 5 / 4;
}
/* Item 3: portrait rechts */
.blog-collage--count-4 .blog-collage__item:nth-child(3) .blog-collage__image-wrapper {
    aspect-ratio: 4 / 5;
}
/* Item 4: vierkant/landscape linksonder */
.blog-collage--count-4 .blog-collage__item:nth-child(4) .blog-collage__image-wrapper {
    aspect-ratio: 5 / 4;
}

/* Item 2: content box BOVENAAN (want item 3 zit eronder) */
.blog-collage--count-4 .blog-collage__item:nth-child(2) .blog-collage__content {
    bottom: auto;
    top: -40px;
}


/* =================================
   BLOG LAYOUT: 5 berichten
   ================================= */
.blog-collage--count-5 {
    grid-template-rows: repeat(4, 160px);
}
.blog-collage--count-5 .blog-collage__item:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 5;
}
.blog-collage--count-5 .blog-collage__item:nth-child(2) {
    grid-column: 6 / 9;
    grid-row: 1 / 3;
}
.blog-collage--count-5 .blog-collage__item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
}
.blog-collage--count-5 .blog-collage__item:nth-child(4) {
    grid-column: 6 / 10;
    grid-row: 3 / 5;
}
.blog-collage--count-5 .blog-collage__item:nth-child(5) {
    grid-column: 10 / 13;
    grid-row: 3 / 5;
}

/* =================================
   BLOG LAYOUT: 6 berichten
   ================================= */
.blog-collage--count-6 {
    grid-template-rows: repeat(5, 140px);
}
.blog-collage--count-6 .blog-collage__item:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 4;
}
.blog-collage--count-6 .blog-collage__item:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
}
.blog-collage--count-6 .blog-collage__item:nth-child(3) {
    grid-column: 7 / 13;
    grid-row: 3 / 4;
}
.blog-collage--count-6 .blog-collage__item:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 4 / 6;
}
.blog-collage--count-6 .blog-collage__item:nth-child(5) {
    grid-column: 5 / 9;
    grid-row: 4 / 6;
}
.blog-collage--count-6 .blog-collage__item:nth-child(6) {
    grid-column: 9 / 13;
    grid-row: 4 / 6;
}

/* =================================
   BLOG LAYOUT: 7 berichten
   ================================= */
.blog-collage--count-7 {
    grid-template-rows: repeat(5, 140px);
}
.blog-collage--count-7 .blog-collage__item:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 4;
}
.blog-collage--count-7 .blog-collage__item:nth-child(2) {
    grid-column: 6 / 9;
    grid-row: 1 / 2;
}
.blog-collage--count-7 .blog-collage__item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
}
.blog-collage--count-7 .blog-collage__item:nth-child(4) {
    grid-column: 6 / 9;
    grid-row: 2 / 4;
}
.blog-collage--count-7 .blog-collage__item:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: 3 / 4;
}
.blog-collage--count-7 .blog-collage__item:nth-child(6) {
    grid-column: 1 / 5;
    grid-row: 4 / 6;
}
.blog-collage--count-7 .blog-collage__item:nth-child(7) {
    grid-column: 5 / 13;
    grid-row: 4 / 6;
}

/* =================================
   BLOG LAYOUT: 8 berichten (default)
   ================================= */
.blog-collage--count-8 .blog-collage__item:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 4;
}
.blog-collage--count-8 .blog-collage__item:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1 / 2;
}
.blog-collage--count-8 .blog-collage__item:nth-child(3) {
    grid-column: 7 / 10;
    grid-row: 2 / 4;
}
.blog-collage--count-8 .blog-collage__item:nth-child(4) {
    grid-column: 10 / 13;
    grid-row: 2 / 4;
}
.blog-collage--count-8 .blog-collage__item:nth-child(5) {
    grid-column: 1 / 4;
    grid-row: 4 / 7;
}
.blog-collage--count-8 .blog-collage__item:nth-child(6) {
    grid-column: 4 / 7;
    grid-row: 4 / 5;
}
.blog-collage--count-8 .blog-collage__item:nth-child(7) {
    grid-column: 4 / 7;
    grid-row: 5 / 7;
}
.blog-collage--count-8 .blog-collage__item:nth-child(8) {
    grid-column: 7 / 13;
    grid-row: 4 / 7;
}

/* Blog Item styling - geïnspireerd op pricing packages */
.blog-collage__item {
    position: relative;
    overflow: visible;
    border-radius: 8px;
    background: transparent;
    z-index: 1;
}

/* Z-index voor items - latere items (lager in grid) krijgen hogere z-index */
.blog-collage--count-3 .blog-collage__item:nth-child(1) {
    z-index: 1;
}
.blog-collage--count-3 .blog-collage__item:nth-child(2) {
    z-index: 2;
}
.blog-collage--count-3 .blog-collage__item:nth-child(3) {
    z-index: 3;
}

/* Tweede omlijning - alleen om de afbeelding */
.blog-collage__image-wrapper::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid var(--pm-color-taupe);
    border-radius: 10px;
    z-index: 0;
    pointer-events: none;
    display: block;
    opacity: 1;
    transition: top var(--pm-transition), left var(--pm-transition), right var(--pm-transition), bottom var(--pm-transition);
}

.blog-collage__item:hover .blog-collage__image-wrapper::before {
    top: 4px;
    left: -4px;
    right: 4px;
    bottom: 4px;
}


.blog-collage__link {
    display: block;
    width: 100%;
    text-decoration: none;
    position: relative;
    z-index: 1;
    border: none;
    border-radius: 8px;
    background: transparent;
    overflow: visible;
}

.blog-collage__image-wrapper {
    width: 100%;
    position: relative;
    overflow: visible;
    display: block;
    border-radius: 8px;
}

/* 3 items verhoudingen */
/* Item 1: links (6:7) */
.blog-collage--count-3 .blog-collage__item:nth-child(1) .blog-collage__image-wrapper {
    aspect-ratio: 6 / 7 !important;
}
/* Item 2: rechtsboven (3:2) */
.blog-collage--count-3 .blog-collage__item:nth-child(2) .blog-collage__image-wrapper {
    aspect-ratio: 3 / 2 !important;
}
/* Item 3: rechts lang (3:4) */
.blog-collage--count-3 .blog-collage__item:nth-child(3) .blog-collage__image-wrapper {
    aspect-ratio: 3 / 4 !important;
}

.blog-collage__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    border-radius: 8px;
}

/* Hover effect */
.blog-collage__item:hover .blog-collage__image-wrapper img {
    transform: scale(1.05);
}

/* Content - zwevend over de afbeelding, steekt erbuiten */
.blog-collage__content {
    position: absolute;
    bottom: -40px;
    left: var(--pm-space-md);
    right: var(--pm-space-md);
    padding: var(--pm-space-md);
    background: var(--pm-color-cream);
    border: none;
    border-radius: 8px;
    z-index: 5;
    box-shadow: none;
    overflow: visible;
}

/* 2e omlijning op content box */
.blog-collage__content::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -8px;
    right: 8px;
    bottom: -8px;
    border: 2px solid var(--pm-color-taupe);
    border-radius: 10px;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    transition: top var(--pm-transition), left var(--pm-transition), right var(--pm-transition), bottom var(--pm-transition);
}

.blog-collage__item:hover .blog-collage__content::before {
    top: 4px;
    left: -4px;
    right: 4px;
    bottom: -4px;
}

/* Item 2: content box BOVENAAN */
.blog-collage--count-3 .blog-collage__item:nth-child(2) .blog-collage__content {
    bottom: auto;
    top: -40px;
}
/* Item 3: content box BOVENAAN */
.blog-collage--count-3 .blog-collage__item:nth-child(3) .blog-collage__content {
    bottom: auto;
    top: -40px;
}


.blog-collage__category {
    display: inline-block;
    font-family: var(--pm-font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pm-color-burgundy-dark);
    margin-bottom: var(--pm-space-xs);
    padding: 3px 10px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 4px;
}

.blog-collage__title {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-xl);
    font-weight: 500;
    font-style: italic;
    color: var(--pm-color-burgundy-dark);
    margin-bottom: var(--pm-space-xs);
    line-height: 1.3;
}

.blog-collage__excerpt {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    color: var(--pm-color-text);
    line-height: 1.5;
    margin-bottom: var(--pm-space-xs);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-collage__date {
    display: block;
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 500;
    color: var(--pm-color-burgundy-dark);
    margin-bottom: var(--pm-space-xs);
}

.blog-collage__meta {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 500;
    color: var(--pm-color-burgundy-dark);
    margin-bottom: var(--pm-space-xs);
}

.blog-collage__meta time,
.blog-collage__meta span {
    color: var(--pm-color-burgundy-dark);
}

.blog-collage__meta .separator {
    color: var(--pm-color-text-light);
    opacity: 0.6;
}

.blog-collage__read-more {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 500;
    color: var(--pm-color-burgundy-dark);
    opacity: 1;
    transform: translateY(0);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

.blog-collage__read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-collage__item:hover .blog-collage__read-more {
    color: var(--pm-color-burgundy);
}

.blog-collage__item:hover .blog-collage__read-more::after {
    transform: translateX(4px);
}

/* Load more on scroll - hidden en revealed states */
.blog-collage__item--hidden {
    display: none;
}

.blog-collage__item--revealed {
    animation: blogItemReveal 0.6s ease forwards;
}

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

.blog-collage__meta {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    font-weight: 500;
    color: var(--pm-color-burgundy-dark);
    margin-bottom: var(--pm-space-xs);
}

.blog-collage__meta time,
.blog-collage__meta span {
    color: var(--pm-color-burgundy-dark);
}

.blog-collage__meta .separator {
    color: var(--pm-color-text-light);
    opacity: 0.6;
}

.blog-collage__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pm-color-burgundy) 0%, var(--pm-color-burgundy-dark) 100%);
}

.blog-collage__no-posts {
    text-align: center;
    color: var(--pm-color-text-light);
    font-style: italic;
    padding: var(--pm-space-2xl);
}

/* Responsive - Blog Collage */
@media (max-width: 1024px) {
    .blog-collage--count-3,
    .blog-collage--count-4,
    .blog-collage--count-5 {
        grid-template-rows: repeat(4, 130px);
    }
    .blog-collage--count-6,
    .blog-collage--count-7 {
        grid-template-rows: repeat(5, 115px);
    }
    .blog-collage--count-8 {
        grid-template-rows: repeat(6, 110px);
    }
    
    .blog-collage__header--width-75,
    .blog-collage__header--width-66,
    .blog-collage__header--width-50 {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-collage-section {
        padding: var(--pm-space-lg) 0 var(--pm-space-xl);
    }
    
    /* Op mobiel: verticale lijst ipv grid */
    .blog-collage {
        display: flex;
        flex-direction: column;
        gap: 80px;
        border-radius: 0;
    }
    
    .blog-collage--count-3,
    .blog-collage--count-4,
    .blog-collage--count-5,
    .blog-collage--count-6,
    .blog-collage--count-7,
    .blog-collage--count-8 {
        grid-template-rows: none;
    }
    
    .blog-collage__item {
        grid-column: auto !important;
        grid-row: auto !important;
        border-radius: 8px;
        overflow: visible;
    }
    
    /* Alle afbeeldingen 4:5 op mobiel - ook specifieke items */
    .blog-collage__image-wrapper,
    .blog-collage--count-3 .blog-collage__item:nth-child(1) .blog-collage__image-wrapper,
    .blog-collage--count-3 .blog-collage__item:nth-child(2) .blog-collage__image-wrapper,
    .blog-collage--count-3 .blog-collage__item:nth-child(3) .blog-collage__image-wrapper,
    .blog-collage--count-4 .blog-collage__item:nth-child(1) .blog-collage__image-wrapper,
    .blog-collage--count-4 .blog-collage__item:nth-child(2) .blog-collage__image-wrapper,
    .blog-collage--count-4 .blog-collage__item:nth-child(3) .blog-collage__image-wrapper,
    .blog-collage--count-4 .blog-collage__item:nth-child(4) .blog-collage__image-wrapper {
        aspect-ratio: 4 / 5 !important;
    }
    
    /* Content box altijd onderaan op mobiel */
    .blog-collage__content,
    .blog-collage--count-3 .blog-collage__item:nth-child(2) .blog-collage__content,
    .blog-collage--count-3 .blog-collage__item:nth-child(3) .blog-collage__content,
    .blog-collage--count-4 .blog-collage__item:nth-child(2) .blog-collage__content {
        bottom: -50px !important;
        top: auto !important;
        padding: var(--pm-space-md);
    }
    
    /* 2e omlijning ook onderaan op mobiel */
    .blog-collage__image-wrapper::before {
        bottom: 8px !important;
        top: 8px !important;
    }
    
    .blog-collage__overlay {
        padding: var(--pm-space-md);
    }
    
    .blog-collage__title {
        font-size: var(--pm-text-xl);
    }
    
    .blog-collage__category {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .blog-collage__excerpt {
        font-size: var(--pm-text-xs);
    }
    
    .blog-collage__meta {
        font-size: 0.75rem;
    }
    
    .blog-collage__read-more {
        font-size: var(--pm-text-xs);
    }
    
    /* Legacy grid fallback verwijderen */
    .blog-collage--count-5 .blog-collage__item:nth-child(2) {
        grid-column: auto;
        grid-row: 3 / 4;
    }
    .blog-collage--count-5 .blog-collage__item:nth-child(3) {
        grid-column: 4 / 7;
        grid-row: 3 / 4;
    }
    .blog-collage--count-5 .blog-collage__item:nth-child(4) {
        grid-column: 1 / 4;
        grid-row: 4 / 6;
    }
    .blog-collage--count-5 .blog-collage__item:nth-child(5) {
        grid-column: 4 / 7;
        grid-row: 4 / 6;
    }
    
    /* 6 berichten - mobiel */
    .blog-collage--count-6 {
        grid-template-rows: repeat(6, 85px);
    }
    .blog-collage--count-6 .blog-collage__item:nth-child(1) {
        grid-column: 1 / 7;
        grid-row: 1 / 3;
    }
    .blog-collage--count-6 .blog-collage__item:nth-child(2) {
        grid-column: 1 / 4;
        grid-row: 3 / 5;
    }
    .blog-collage--count-6 .blog-collage__item:nth-child(3) {
        grid-column: 4 / 7;
        grid-row: 3 / 5;
    }
    .blog-collage--count-6 .blog-collage__item:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 5 / 7;
    }
    .blog-collage--count-6 .blog-collage__item:nth-child(5) {
        grid-column: 3 / 5;
        grid-row: 5 / 7;
    }
    .blog-collage--count-6 .blog-collage__item:nth-child(6) {
        grid-column: 5 / 7;
        grid-row: 5 / 7;
    }
    
    /* 7-8 berichten - mobiel */
    .blog-collage--count-7,
    .blog-collage--count-8 {
        grid-template-rows: repeat(7, 75px);
    }
    .blog-collage--count-7 .blog-collage__item:nth-child(1),
    .blog-collage--count-8 .blog-collage__item:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }
    .blog-collage--count-7 .blog-collage__item:nth-child(2),
    .blog-collage--count-8 .blog-collage__item:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 3;
    }
    .blog-collage--count-7 .blog-collage__item:nth-child(3),
    .blog-collage--count-8 .blog-collage__item:nth-child(3) {
        grid-column: 1 / 7;
        grid-row: 3 / 5;
    }
    .blog-collage--count-7 .blog-collage__item:nth-child(4),
    .blog-collage--count-8 .blog-collage__item:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 5 / 7;
    }
    .blog-collage--count-7 .blog-collage__item:nth-child(5),
    .blog-collage--count-8 .blog-collage__item:nth-child(5) {
        grid-column: 3 / 7;
        grid-row: 5 / 7;
    }
    .blog-collage--count-7 .blog-collage__item:nth-child(6),
    .blog-collage--count-8 .blog-collage__item:nth-child(6) {
        grid-column: 1 / 4;
        grid-row: 7 / 8;
    }
    .blog-collage--count-7 .blog-collage__item:nth-child(7),
    .blog-collage--count-8 .blog-collage__item:nth-child(7) {
        grid-column: 4 / 7;
        grid-row: 7 / 8;
    }
    .blog-collage--count-8 .blog-collage__item:nth-child(8) {
        display: none;
    }
    
    .blog-collage__overlay {
        padding: var(--pm-space-lg);
    }
    
    .blog-collage__title {
        font-size: var(--pm-text-xl);
    }
    
    .blog-collage__excerpt {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Blog items op kleine mobiel - simpeler */
    .blog-collage__image-wrapper {
        aspect-ratio: 4 / 3;
    }
    
    .blog-collage__overlay {
        padding: var(--pm-space-md);
    }
    
    .blog-collage__title {
        font-size: var(--pm-text-lg);
    }
    
    .blog-collage__category {
        font-size: 0.65rem;
    }
}

/* ==========================================================================
   Blog Hero
   ========================================================================== */

.blog-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pm-space-2xl) 0;
    overflow: hidden;
}

.blog-hero--height-small {
    min-height: 35vh;
}

.blog-hero--height-medium {
    min-height: 50vh;
}

.blog-hero--height-large {
    min-height: 65vh;
}

.blog-hero--height-full {
    min-height: 100vh;
}

.blog-hero--has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(74, 13, 20, calc(var(--overlay-opacity, 0.6) + 0.2)) 0%,
        rgba(74, 13, 20, var(--overlay-opacity, 0.6)) 50%,
        rgba(74, 13, 20, calc(var(--overlay-opacity, 0.6) - 0.2)) 100%
    );
}

.blog-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.blog-hero__content {
    max-width: 750px;
}

.blog-hero--align-center .blog-hero__content {
    margin: 0 auto;
    text-align: center;
}

/* Breadcrumbs - subtle */
.blog-hero__breadcrumbs {
    font-family: var(--pm-font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    margin-bottom: var(--pm-space-lg);
    opacity: 0.7;
}

.blog-hero__breadcrumbs a {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.blog-hero__breadcrumbs a:hover {
    opacity: 1;
}

.blog-hero__breadcrumbs .separator {
    margin: 0 0.75em;
    opacity: 0.4;
}

/* Meta - clean and spaced */
.blog-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75em;
    font-family: var(--pm-font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    margin-bottom: var(--pm-space-lg);
    opacity: 0.85;
}

.blog-hero--align-center .blog-hero__meta {
    justify-content: center;
}

.blog-hero__category {
    display: inline-block;
    padding: 0.35em 0.9em;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.blog-hero__category:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.pm-inverse .blog-hero__category {
    color: var(--pm-color-cream);
}

.blog-hero__meta-separator {
    opacity: 0.35;
}

/* Title - prominent with breathing room */
.blog-hero__title {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-4xl);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: var(--pm-space-md);
    letter-spacing: -0.01em;
}

/* Subtitle - elegant */
.blog-hero__subtitle {
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-2xl);
    font-weight: 200;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Author - subtle */
.blog-hero__author {
    font-family: var(--pm-font-sans);
    font-size: 0.8rem;
    margin-top: var(--pm-space-md);
    opacity: 0.7;
}

.blog-hero__author-label {
    opacity: 0.8;
}

.blog-hero__author-name {
    font-weight: 500;
}

/* ==========================================================================
   FAQ / Accordion
   ========================================================================== */

.faq-section {
    padding: var(--pm-space-3xl) 0;
}

.faq-section__header {
    margin-bottom: var(--pm-space-2xl);
}

.faq-section__header--width-full {
    max-width: 100%;
}

.faq-section__header--width-75 {
    max-width: 75%;
}

.faq-section__header--width-66 {
    max-width: 66.666%;
}

.faq-section__header--width-50 {
    max-width: 50%;
}

.faq-section__intro {
    font-size: var(--pm-text-lg);
    color: var(--pm-color-text-light);
    margin-top: var(--pm-space-md);
}

.faq-accordion {
    max-width: 100%;
}

.faq-section--layout-centered .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

/* Minimal style */
.faq-section--style-minimal .faq-accordion__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-section--style-minimal .faq-accordion__item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Cards style */
.faq-section--style-cards .faq-accordion__item {
    background-color: var(--pm-color-white);
    border-radius: 8px;
    margin-bottom: var(--pm-space-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Bordered style */
.faq-section--style-bordered .faq-accordion__item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: var(--pm-space-sm);
}

.faq-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--pm-space-md) var(--pm-space-sm);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-lg);
    font-weight: 500;
    color: var(--pm-color-text);
    transition: color 0.2s ease;
}

.faq-section--style-cards .faq-accordion__trigger,
.faq-section--style-bordered .faq-accordion__trigger {
    padding: var(--pm-space-md) var(--pm-space-lg);
}

.faq-accordion__trigger:hover {
    color: var(--pm-color-burgundy);
}

.faq-accordion__question {
    flex: 1;
    padding-right: var(--pm-space-md);
}

.faq-accordion__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--pm-color-burgundy);
    transition: transform 0.3s ease;
}

/* Chevron rotation */
.faq-section--icon-chevron .faq-accordion__item.is-open .faq-accordion__icon {
    transform: rotate(180deg);
}

/* Plus/Minus toggle */
.faq-accordion__icon-minus {
    display: none;
}

.faq-section--icon-plus .faq-accordion__item.is-open .faq-accordion__icon-plus {
    display: none;
}

.faq-section--icon-plus .faq-accordion__item.is-open .faq-accordion__icon-minus {
    display: block;
}

.faq-accordion__content {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion__content[hidden] {
    display: none;
}

.faq-accordion__answer {
    padding: 0 var(--pm-space-sm) var(--pm-space-lg);
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-base);
    color: var(--pm-color-text-light);
    line-height: 1.7;
}

.faq-section--style-cards .faq-accordion__answer,
.faq-section--style-bordered .faq-accordion__answer {
    padding: 0 var(--pm-space-lg) var(--pm-space-lg);
}

.faq-accordion__answer p {
    margin: 0 0 var(--pm-space-sm);
}

.faq-accordion__answer p:last-child {
    margin-bottom: 0;
}

/* Dark theme */
.pm-inverse .faq-accordion__trigger {
    color: var(--pm-color-cream);
}

.pm-inverse .faq-accordion__trigger:hover {
    color: var(--pm-color-gold);
}

.pm-inverse .faq-accordion__icon {
    color: var(--pm-color-gold);
}

.pm-inverse .faq-accordion__answer {
    color: rgba(255, 255, 255, 0.85);
}

.pm-inverse.faq-section--style-minimal .faq-accordion__item {
    border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Author Box
   ========================================================================== */

.author-box {
    padding: var(--pm-space-2xl) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-box__inner {
    display: flex;
    align-items: center;
    gap: var(--pm-space-lg);
    max-width: 700px;
}

.author-box--layout-horizontal .author-box__inner {
    margin: 0 auto;
}

.author-box--layout-vertical .author-box__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.author-box--style-card .author-box__inner {
    background-color: var(--pm-color-cream-dark);
    padding: var(--pm-space-xl);
    border-radius: 12px;
}

.author-box--style-featured .author-box__inner {
    padding: var(--pm-space-xl);
    border-radius: 12px;
}

.author-box--style-minimal {
    border-top: none;
}

.author-box__avatar {
    flex-shrink: 0;
}

.author-box__avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box--layout-vertical .author-box__avatar img {
    width: 120px;
    height: 120px;
}

.author-box__content {
    flex: 1;
}

.author-box__label {
    font-family: var(--pm-font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pm-color-text-muted);
    margin-bottom: var(--pm-space-xs);
}

.author-box__name {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-xl);
    font-weight: 500;
    margin-bottom: var(--pm-space-xs);
}

.author-box__name a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-box__name a:hover {
    color: var(--pm-color-burgundy);
}

.author-box__role {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    color: var(--pm-color-burgundy);
    margin-bottom: var(--pm-space-sm);
}

.author-box__bio {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    color: var(--pm-color-text-light);
    line-height: 1.6;
}

.author-box__bio p {
    margin: 0;
}

/* Dark theme */
.pm-inverse .author-box__label {
    color: rgba(255, 255, 255, 0.6);
}

.pm-inverse .author-box__name {
    color: var(--pm-color-cream);
}

.pm-inverse .author-box__name a:hover {
    color: var(--pm-color-gold);
}

.pm-inverse .author-box__role {
    color: var(--pm-color-gold);
}

.pm-inverse .author-box__bio {
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Related Posts
   ========================================================================== */

.related-posts-section {
    padding: var(--pm-space-3xl) 0;
}

.related-posts__header {
    margin-bottom: var(--pm-space-xl);
}

.related-posts__grid {
    display: grid;
    gap: var(--pm-space-lg);
}

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

.related-posts__grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.related-posts__grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.related-posts__item {
    overflow: hidden;
}

.related-posts__link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.related-posts--layout-cards .related-posts__item {
    background-color: var(--pm-color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.related-posts--layout-cards .related-posts__item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.related-posts__image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.related-posts__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-posts__item:hover .related-posts__image img {
    transform: scale(1.05);
}

.related-posts__content {
    padding: var(--pm-space-md);
}

.related-posts--layout-grid .related-posts__content {
    padding: var(--pm-space-md) 0;
}

.related-posts__category {
    display: inline-block;
    font-family: var(--pm-font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pm-color-burgundy);
    margin-bottom: var(--pm-space-xs);
}

.related-posts__title {
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-lg);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--pm-space-xs);
    transition: color 0.2s ease;
}

.related-posts__item:hover .related-posts__title {
    color: var(--pm-color-burgundy);
}

.related-posts__excerpt {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    color: var(--pm-color-text-light);
    line-height: 1.5;
    margin-bottom: var(--pm-space-sm);
}

.related-posts__date {
    font-family: var(--pm-font-sans);
    font-size: 0.75rem;
    color: var(--pm-color-text-muted);
}

/* List layout */
.related-posts--layout-list .related-posts__grid {
    display: flex;
    flex-direction: column;
    gap: var(--pm-space-md);
}

.related-posts--layout-list .related-posts__link {
    display: flex;
    gap: var(--pm-space-md);
    align-items: center;
}

.related-posts--layout-list .related-posts__image {
    width: 120px;
    flex-shrink: 0;
    aspect-ratio: 1;
    border-radius: 8px;
}

.related-posts--layout-list .related-posts__content {
    padding: 0;
}

/* Dark theme */
.pm-inverse .related-posts--layout-cards .related-posts__item {
    background-color: rgba(255, 255, 255, 0.05);
}

.pm-inverse .related-posts__category {
    color: var(--pm-color-gold);
}

.pm-inverse .related-posts__title {
    color: var(--pm-color-cream);
}

.pm-inverse .related-posts__item:hover .related-posts__title {
    color: var(--pm-color-gold);
}

.pm-inverse .related-posts__excerpt,
.pm-inverse .related-posts__date {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Blog Content Block
   ========================================================================== */

.blog-content-block {
    width: 100%;
}

.blog-content-block--padding-none {
    padding: 0;
}

.blog-content-block--padding-small {
    padding: var(--pm-space-sm) 0;
}

.blog-content-block--padding-medium {
    padding: var(--pm-space-md) 0;
}

.blog-content-block--padding-large {
    padding: var(--pm-space-xl) 0;
}

.blog-content-block__inner {
    max-width: var(--pm-container-width);
    margin: 0 auto;
    padding: 0 var(--pm-space-md);
}

.blog-content-block--width-narrow .blog-content-block__content {
    max-width: 700px;
}

.blog-content-block--width-medium .blog-content-block__content {
    max-width: 900px;
}

.blog-content-block--width-wide .blog-content-block__content {
    max-width: 1100px;
}

.blog-content-block--width-full .blog-content-block__content {
    max-width: 100%;
}

.blog-content-block--align-center .blog-content-block__content {
    margin: 0 auto;
}

.blog-content-block--align-left .blog-content-block__content {
    margin: 0;
}

/* Prose styling - beautiful typography for blog content */
.prose {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-base);
    line-height: 1.7;
    color: var(--pm-color-text);
}

.prose p {
    margin-bottom: 1.2em;
}

.prose h2 {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-2xl);
    font-weight: 500;
    line-height: 1.3;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: var(--pm-color-text);
}

.prose h3 {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-xl);
    font-weight: 500;
    line-height: 1.4;
    margin-top: 1.25em;
    margin-bottom: 0.4em;
}

.prose h4 {
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-lg);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.prose strong {
    font-weight: 600;
    color: var(--pm-color-text);
}

.prose em {
    font-style: italic;
}

.prose a {
    color: var(--pm-color-burgundy);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.prose a:hover {
    color: var(--pm-color-burgundy-dark);
}

.prose ul,
.prose ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.prose li {
    margin-bottom: 0.5em;
}

.prose ul li::marker {
    color: var(--pm-color-burgundy);
}

.prose ol li::marker {
    color: var(--pm-color-burgundy);
    font-weight: 500;
}

.prose blockquote {
    border-left: 3px solid var(--pm-color-burgundy);
    margin: 2em 0;
    padding: 1em 0 1em 1.5em;
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-lg);
    font-style: italic;
    color: var(--pm-color-text-light);
}

.prose blockquote p {
    margin: 0;
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
}

.prose figure {
    margin: 2em 0;
}

.prose figcaption {
    font-size: var(--pm-text-sm);
    color: var(--pm-color-text-muted);
    text-align: center;
    margin-top: 0.75em;
}

.prose hr {
    border: none;
    border-top: 1px solid var(--pm-color-taupe);
    margin: 3em 0;
    opacity: 0.3;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
}

.prose th,
.prose td {
    padding: 0.75em 1em;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
}

.prose th {
    background-color: var(--pm-color-cream-dark);
    font-weight: 500;
}

/* Drop cap */
.blog-content-block--drop-cap .prose > p:first-of-type::first-letter {
    font-family: var(--pm-font-display);
    font-size: 3.5em;
    font-weight: 500;
    float: left;
    line-height: 0.8;
    margin-right: 0.1em;
    margin-top: 0.1em;
    color: var(--pm-color-burgundy);
}

/* ==========================================================================
   Image Slider / Gallery
   ========================================================================== */

.image-slider-section {
    width: 100%;
}

.image-slider-section--padding-none {
    padding: 0;
}

.image-slider-section--padding-small {
    padding: var(--pm-space-md) 0;
}

.image-slider-section--padding-medium {
    padding: var(--pm-space-xl) 0;
}

.image-slider-section--padding-large {
    padding: var(--pm-space-2xl) 0;
}

/* Width for slider */
.image-slider-section--width-narrow .image-slider,
.image-slider-section--width-narrow .image-gallery-row {
    max-width: 600px;
    margin: 0 auto;
}

.image-slider-section--width-medium .image-slider,
.image-slider-section--width-medium .image-gallery-row {
    max-width: 900px;
    margin: 0 auto;
}

.image-slider-section--width-wide .image-slider,
.image-slider-section--width-wide .image-gallery-row {
    max-width: 1100px;
    margin: 0 auto;
}

.image-slider-section--width-full .image-slider,
.image-slider-section--width-full .image-gallery-row {
    max-width: 100%;
}

/* ==========================================================================
   Slider Mode
   ========================================================================== */

.image-slider {
    position: relative;
    overflow: hidden;
}

.image-slider--rounded {
    border-radius: 12px;
}

.image-slider__track {
    position: relative;
    width: 100%;
}

.image-slider__slides {
    position: relative;
}

.image-slider__slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-slider__slide.is-active {
    display: block;
    opacity: 1;
}

.image-slider__image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Aspect ratios */
.image-slider--ratio-1-1 .image-slider__image-wrapper {
    aspect-ratio: 1 / 1;
}

.image-slider--ratio-4-5 .image-slider__image-wrapper {
    aspect-ratio: 4 / 5;
}

.image-slider--ratio-3-4 .image-slider__image-wrapper {
    aspect-ratio: 3 / 4;
}

.image-slider--ratio-16-9 .image-slider__image-wrapper {
    aspect-ratio: 16 / 9;
}

.image-slider--ratio-4-3 .image-slider__image-wrapper {
    aspect-ratio: 4 / 3;
}

.image-slider--ratio-auto .image-slider__image-wrapper {
    aspect-ratio: auto;
}

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

.image-slider--ratio-auto .image-slider__image-wrapper img {
    height: auto;
    object-fit: contain;
}

/* Caption */
.image-slider__caption {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    color: var(--pm-color-text-muted);
    text-align: center;
    padding: var(--pm-space-sm) 0 0;
    margin: 0;
}

/* Arrows - cleaner style */
.image-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--pm-color-burgundy);
    transition: all 0.2s ease;
}

.image-slider__arrow:hover {
    background-color: var(--pm-color-burgundy);
    color: var(--pm-color-cream);
}

.image-slider__arrow--prev {
    left: var(--pm-space-sm);
}

.image-slider__arrow--next {
    right: var(--pm-space-sm);
}

/* Counter */
.image-slider__counter {
    position: absolute;
    bottom: var(--pm-space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    color: var(--pm-color-white);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.35em 0.9em;
    border-radius: 20px;
}

.image-slider__counter-separator {
    margin: 0 0.25em;
    opacity: 0.7;
}

/* Dots - inside slider */
.image-slider__dots {
    position: absolute;
    bottom: var(--pm-space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
}

.image-slider__dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.image-slider__dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.image-slider__dot.is-active {
    background-color: var(--pm-color-white);
    transform: scale(1.3);
}

/* Dark theme adjustments */
.pm-inverse .image-slider__arrow {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--pm-color-cream);
}

.pm-inverse .image-slider__arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.pm-inverse .image-slider__caption {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Carousel Mode - Like Simon Maree example
   ========================================================================== */

.image-slider-section--mode-carousel {
    overflow: visible;
}

.image-slider-section--mode-carousel > .container {
    overflow: visible;
    max-width: var(--pm-container-width);
    padding-left: var(--pm-space-lg);
    padding-right: 0;
}

.image-carousel-wrapper {
    position: relative;
}

/* Nav in container, right aligned */
.image-carousel__nav {
    display: flex;
    justify-content: flex-end;
    gap: var(--pm-space-sm);
    margin-bottom: var(--pm-space-md);
}

.image-carousel__arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--pm-color-taupe);
    border-radius: 50%;
    cursor: pointer;
    color: var(--pm-color-taupe);
    transition: all 0.2s ease;
}

.image-carousel__arrow:hover {
    border-color: var(--pm-color-burgundy);
    color: var(--pm-color-burgundy);
}

/* Carousel: starts at content edge, can scroll beyond viewport on both sides */
.image-carousel {
    display: flex;
    gap: var(--pm-space-lg);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Calculate the offset from container edge to viewport edge */
    --carousel-offset: max(var(--pm-space-lg), calc((100vw - var(--pm-container-width)) / 2 + var(--pm-space-lg)));
    /* Extend beyond viewport on both sides */
    margin-left: calc(-1 * var(--carousel-offset));
    margin-right: calc(-1 * var(--carousel-offset) + var(--pm-space-lg));
    /* Padding to create scrollable space - first image starts at content edge */
    padding-left: var(--carousel-offset);
    padding-right: var(--pm-space-lg);
    /* Scroll snap starts at content edge */
    scroll-padding-left: var(--carousel-offset);
}

.image-carousel::-webkit-scrollbar {
    display: none;
}

/* Smooth slide animation for images */
.image-carousel__slide {
    transition: transform 0.3s ease;
}

/* Gaps */
.image-carousel--gap-small {
    gap: var(--pm-space-sm);
}

.image-carousel--gap-medium {
    gap: var(--pm-space-md);
}

.image-carousel--gap-large {
    gap: var(--pm-space-lg);
}

.image-carousel__slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* Size options */
.image-carousel--size-small .image-carousel__slide {
    width: 220px;
}

.image-carousel--size-medium .image-carousel__slide {
    width: 320px;
}

.image-carousel--size-large .image-carousel__slide {
    width: 420px;
}

.image-carousel--size-xlarge .image-carousel__slide {
    width: 520px;
}

.image-carousel__image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-carousel--rounded .image-carousel__image-wrapper {
    border-radius: 12px;
}

/* Aspect ratios for carousel */
.image-carousel--ratio-1-1 .image-carousel__image-wrapper {
    aspect-ratio: 1 / 1;
}

.image-carousel--ratio-4-5 .image-carousel__image-wrapper {
    aspect-ratio: 4 / 5;
}

.image-carousel--ratio-3-4 .image-carousel__image-wrapper {
    aspect-ratio: 3 / 4;
}

.image-carousel--ratio-16-9 .image-carousel__image-wrapper {
    aspect-ratio: 16 / 9;
}

.image-carousel--ratio-4-3 .image-carousel__image-wrapper {
    aspect-ratio: 4 / 3;
}

.image-carousel--ratio-auto .image-carousel__image-wrapper {
    aspect-ratio: auto;
}

.image-carousel__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-carousel--ratio-auto .image-carousel__image-wrapper img {
    height: auto;
    object-fit: contain;
}

.image-carousel__caption {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    color: var(--pm-color-text-muted);
    text-align: center;
    padding: var(--pm-space-xs) 0 0;
    margin: 0;
}

/* Dark theme */
.pm-inverse .image-carousel__arrow {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.6);
}

.pm-inverse .image-carousel__arrow:hover {
    border-color: var(--pm-color-gold);
    color: var(--pm-color-gold);
}

/* ==========================================================================
   Gallery Row Mode
   ========================================================================== */

.image-gallery-row {
    display: grid;
    width: 100%;
}

.image-gallery-row--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.image-gallery-row--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.image-gallery-row--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Gaps */
.image-gallery-row--gap-none {
    gap: 0;
}

.image-gallery-row--gap-small {
    gap: var(--pm-space-xs);
}

.image-gallery-row--gap-medium {
    gap: var(--pm-space-sm);
}

.image-gallery-row--gap-large {
    gap: var(--pm-space-md);
}

.image-gallery-row--rounded .image-gallery-row__image-wrapper {
    border-radius: 8px;
}

.image-gallery-row__item {
    margin: 0;
}

.image-gallery-row__image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Aspect ratios for gallery */
.image-gallery-row--ratio-1-1 .image-gallery-row__image-wrapper {
    aspect-ratio: 1 / 1;
}

.image-gallery-row--ratio-4-5 .image-gallery-row__image-wrapper {
    aspect-ratio: 4 / 5;
}

.image-gallery-row--ratio-3-4 .image-gallery-row__image-wrapper {
    aspect-ratio: 3 / 4;
}

.image-gallery-row--ratio-16-9 .image-gallery-row__image-wrapper {
    aspect-ratio: 16 / 9;
}

.image-gallery-row--ratio-4-3 .image-gallery-row__image-wrapper {
    aspect-ratio: 4 / 3;
}

.image-gallery-row--ratio-auto .image-gallery-row__image-wrapper {
    aspect-ratio: auto;
}

.image-gallery-row__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-gallery-row__item:hover .image-gallery-row__image-wrapper img {
    transform: scale(1.03);
}

.image-gallery-row--ratio-auto .image-gallery-row__image-wrapper img {
    height: auto;
    object-fit: contain;
}

.image-gallery-row__caption {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    color: var(--pm-color-text-muted);
    text-align: center;
    padding: var(--pm-space-xs) 0 0;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .image-slider__arrow {
        width: 38px;
        height: 38px;
    }
    
    .image-slider__arrow--prev {
        left: var(--pm-space-xs);
    }
    
    .image-slider__arrow--next {
        right: var(--pm-space-xs);
    }
    
    .image-slider__counter {
        font-size: var(--pm-text-xs);
    }
    
    .image-slider__dots {
        gap: 8px;
    }
    
    .image-slider__dot {
        width: 6px;
        height: 6px;
    }
    
    .image-gallery-row--cols-3,
    .image-gallery-row--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Carousel responsive */
    .image-carousel__arrow {
        width: 40px;
        height: 40px;
    }
    
    .image-carousel--size-small .image-carousel__slide {
        width: 180px;
    }
    
    .image-carousel--size-medium .image-carousel__slide {
        width: 260px;
    }
    
    .image-carousel--size-large .image-carousel__slide {
        width: 340px;
    }
    
    .image-carousel--size-xlarge .image-carousel__slide {
        width: 400px;
    }
    
    .prose h2 {
        font-size: var(--pm-text-xl);
    }
    
    .blog-content-block--drop-cap .prose > p:first-of-type::first-letter {
        font-size: 2.75em;
    }
}

@media (max-width: 480px) {
    .image-gallery-row--cols-2,
    .image-gallery-row--cols-3,
    .image-gallery-row--cols-4 {
        grid-template-columns: 1fr;
    }
    
    /* Carousel on small mobile */
    .image-carousel__nav {
        gap: var(--pm-space-xs);
    }
    
    .image-carousel--size-small .image-carousel__slide {
        width: 60vw;
    }
    
    .image-carousel--size-medium .image-carousel__slide {
        width: 70vw;
    }
    
    .image-carousel--size-large .image-carousel__slide,
    .image-carousel--size-xlarge .image-carousel__slide {
        width: 80vw;
    }
    
    .image-carousel__arrow {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================================
   Section Header Block
   ========================================================================== */

.section-header-block {
    width: 100%;
}

/* Padding */
.section-header-block--padding-none {
    padding: 0;
}

.section-header-block--padding-small {
    padding: var(--pm-space-lg) 0;
}

.section-header-block--padding-medium {
    padding: var(--pm-space-2xl) 0;
}

.section-header-block--padding-large {
    padding: var(--pm-space-3xl) 0 var(--pm-space-md);
}

/* Margin bottom */
.section-header-block--margin-none {
    margin-bottom: 0;
}

.section-header-block--margin-small {
    margin-bottom: var(--pm-space-md);
}

.section-header-block--margin-medium {
    margin-bottom: var(--pm-space-xl);
}

.section-header-block--margin-large {
    margin-bottom: var(--pm-space-2xl);
}

/* Width */
.section-header-block__inner {
    margin: 0 auto;
}

.section-header-block--width-narrow .section-header-block__inner {
    max-width: 500px;
}

.section-header-block--width-medium .section-header-block__inner {
    max-width: 700px;
}

.section-header-block--width-wide .section-header-block__inner {
    max-width: 900px;
}

.section-header-block--width-full .section-header-block__inner {
    max-width: 100%;
}

/* Alignment */
.section-header-block--align-left .section-header-block__inner {
    margin-left: 0;
    text-align: left;
}

.section-header-block--align-center .section-header-block__inner {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header-block--align-right .section-header-block__inner {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
}

.section-header-block__title {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-4xl);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--pm-space-md);
}

.section-header-block__text {
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-lg);
    line-height: 1.6;
}

.section-header-block__text p {
    margin: 0;
}

/* Dark theme adjustments */
.pm-inverse .section-header-block__text {
    opacity: 0.9;
}

/* Split Layout - Title left, Text right */
.section-header-block__split {
    display: flex;
    gap: var(--pm-space-2xl);
    align-items: start;
    max-width: var(--pm-narrow-width);
    margin: 0 auto;
}

.section-header-block__split-left {
    text-align: left;
    flex-shrink: 0;
}

.section-header-block__split-left .section-header-block__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0;
    line-height: 1.1;
}

.section-header-block__split-right {
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-lg);
    line-height: 1.7;
    padding-top: var(--pm-space-sm);
    max-width: 500px;
}

.section-header-block__split-right p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header-block__title {
        font-size: var(--pm-text-3xl);
    }
    
    .section-header-block--padding-large {
        padding: var(--pm-space-xl) 0 var(--pm-space-sm);
    }
    
    .section-header-block__split {
        flex-direction: column;
        gap: var(--pm-space-md);
    }
    
    .section-header-block__split-left {
        text-align: left;
    }
    
    .section-header-block__split-right {
        max-width: 100%;
        text-align: justify;
    }
    
    .section-header-block__split-left .section-header-block__title {
        font-size: var(--pm-text-2xl);
    }
}

/* ==========================================================================
   Blog Archive
   ========================================================================== */

.blog-archive-hero {
    padding: var(--pm-space-3xl) 0 var(--pm-space-2xl);
    text-align: center;
}

.blog-archive-hero__content {
    max-width: 700px;
    margin: 0 auto;
}

.blog-archive-hero__title {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-4xl);
    font-weight: 500;
    margin-bottom: var(--pm-space-md);
}

.blog-archive-hero__description {
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-lg);
    opacity: 0.9;
}

.blog-archive-section {
    padding: var(--pm-space-3xl) 0;
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pm-space-lg);
}

/* Featured first post - spans full width */
.blog-archive-item--featured {
    grid-column: 1 / -1;
}

.blog-archive-item--featured .blog-archive-item__link {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--pm-space-xl);
    align-items: center;
}

.blog-archive-item--featured .blog-archive-item__image {
    aspect-ratio: 4 / 3;
}

.blog-archive-item--featured .blog-archive-item__title {
    font-size: var(--pm-text-2xl);
}

.blog-archive-item {
    background-color: var(--pm-color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-archive-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.blog-archive-item__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-archive-item__image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-archive-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-archive-item:hover .blog-archive-item__image img {
    transform: scale(1.05);
}

.blog-archive-item__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pm-color-cream-dark);
    color: var(--pm-color-text-muted);
    font-size: var(--pm-text-sm);
}

.blog-archive-item__content {
    padding: var(--pm-space-lg);
}

.blog-archive-item--featured .blog-archive-item__content {
    padding: var(--pm-space-xl) var(--pm-space-xl) var(--pm-space-xl) 0;
}

.blog-archive-item__category {
    display: inline-block;
    font-family: var(--pm-font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pm-color-burgundy);
    margin-bottom: var(--pm-space-xs);
}

.blog-archive-item__title {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-lg);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--pm-space-sm);
    transition: color 0.2s ease;
}

.blog-archive-item:hover .blog-archive-item__title {
    color: var(--pm-color-burgundy);
}

.blog-archive-item__excerpt {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-base);
    color: var(--pm-color-text-light);
    line-height: 1.6;
    margin-bottom: var(--pm-space-md);
}

.blog-archive-item__meta {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    color: var(--pm-color-text-muted);
}

.blog-archive-item__meta .separator {
    margin: 0 0.5em;
    opacity: 0.5;
}

/* Pagination */
.blog-archive-pagination {
    margin-top: var(--pm-space-2xl);
    display: flex;
    justify-content: center;
}

.blog-archive-pagination .nav-links {
    display: flex;
    gap: var(--pm-space-xs);
}

.blog-archive-pagination a,
.blog-archive-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--pm-space-sm);
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.blog-archive-pagination a {
    background-color: var(--pm-color-white);
    color: var(--pm-color-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.blog-archive-pagination a:hover {
    background-color: var(--pm-color-burgundy);
    color: var(--pm-color-cream);
}

.blog-archive-pagination .current {
    background-color: var(--pm-color-burgundy);
    color: var(--pm-color-cream);
}

.blog-archive-pagination .prev,
.blog-archive-pagination .next {
    min-width: auto;
}

/* Empty state */
.blog-archive-empty {
    text-align: center;
    padding: var(--pm-space-3xl);
}

.blog-archive-empty h2 {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-2xl);
    margin-bottom: var(--pm-space-md);
}

.blog-archive-empty p {
    color: var(--pm-color-text-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-archive-item--featured .blog-archive-item__link {
        grid-template-columns: 1fr;
    }
    
    .blog-archive-item--featured .blog-archive-item__content {
        padding: var(--pm-space-lg);
    }
}

@media (max-width: 768px) {
    .blog-archive-hero {
        padding: var(--pm-space-2xl) 0;
    }
    
    .blog-archive-hero__title {
        font-size: var(--pm-text-3xl);
    }
    
    .blog-archive-grid {
        grid-template-columns: 1fr;
        gap: var(--pm-space-md);
    }
    
    .blog-archive-item__content {
        padding: var(--pm-space-md);
    }
    
    .blog-archive-item__title {
        font-size: var(--pm-text-base);
    }
    
    .blog-archive-item--featured .blog-archive-item__title {
        font-size: var(--pm-text-xl);
    }
}

/* ==========================================================================
   Single Post (Legacy)
   ========================================================================== */

.single-post-legacy {
    padding: var(--pm-space-3xl) 0;
}

.single-post__header {
    margin-bottom: var(--pm-space-xl);
    text-align: center;
}

.single-post__category {
    display: inline-block;
    font-family: var(--pm-font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pm-color-burgundy);
    text-decoration: none;
    margin-bottom: var(--pm-space-md);
    transition: color 0.2s ease;
}

.single-post__category:hover {
    color: var(--pm-color-burgundy-dark);
}

.single-post__title {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-4xl);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--pm-space-md);
}

.single-post__meta {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    color: var(--pm-color-text-muted);
}

.single-post__meta .separator {
    margin: 0 0.5em;
}

.single-post__featured-image {
    margin-bottom: var(--pm-space-2xl);
}

.single-post__featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.single-post__content {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-base);
    line-height: 1.8;
}

.single-post__content p {
    margin-bottom: var(--pm-space-md);
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
    font-family: var(--pm-font-display);
    margin-top: var(--pm-space-xl);
    margin-bottom: var(--pm-space-md);
}

.container--narrow {
    max-width: 750px;
    margin: 0 auto;
}

/* ==========================================================================
   Testimonial
   ========================================================================== */

.testimonial {
    padding: var(--pm-space-3xl) var(--pm-space-lg);
    text-align: center;
}

.testimonial__text {
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-2xl);
    font-style: italic;
    line-height: 1.5;
    max-width: var(--pm-narrow-width);
    margin: 0 auto var(--pm-space-md);
}

.testimonial__author {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-sm);
    color: var(--pm-color-text-light);
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-section {
    padding: var(--pm-space-3xl) var(--pm-space-lg);
    text-align: center;
}

.cta-section__label {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--pm-space-xs);
}

.cta-section__title {
    font-size: var(--pm-text-4xl);
    margin-bottom: var(--pm-space-md);
}

.cta-section__text {
    max-width: var(--pm-narrow-width);
    margin: 0 auto var(--pm-space-lg);
}

/* ==========================================================================
   USP
   ========================================================================== */

.usp-section {
    padding: var(--pm-space-2xl) var(--pm-space-lg);
}

.usp-list {
    display: flex;
    justify-content: center;
    gap: var(--pm-space-2xl);
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: var(--pm-space-sm);
}

.usp-item__icon {
    color: var(--pm-color-gold);
}

.usp-item__icon svg {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   About
   ========================================================================== */

.about-section {
    padding: var(--pm-space-3xl) 0;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pm-space-2xl);
    align-items: center;
}

.about--reverse {
    direction: rtl;
}

.about--reverse > * {
    direction: ltr;
}

.about__image img {
    border-radius: 8px;
}

/* Script overlay */
.image-with-script {
    position: relative;
}

.image-script-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: var(--pm-font-script);
    font-size: var(--pm-text-3xl);
    color: var(--pm-color-burgundy);
    transform: rotate(-5deg);
}

/* ==========================================================================
   Questions / Vragenlijst Section
   ========================================================================== */

.questions-section {
    padding: var(--pm-space-3xl) var(--pm-space-lg);
    position: relative;
    overflow: hidden;
}

.questions-section__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.questions-section__intro {
    font-family: var(--pm-font-script);
    font-size: var(--pm-text-3xl);
    color: var(--pm-color-burgundy);
    margin-bottom: var(--pm-space-xl);
}

.questions-list {
    list-style: none;
    margin: 0 0 var(--pm-space-xl) 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--pm-space-md);
}

.questions-list__item {
    display: flex;
    align-items: center;
    gap: var(--pm-space-md);
    padding: var(--pm-space-md) var(--pm-space-lg);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

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

.questions-list__item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(10px);
}

.questions-list__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--pm-color-burgundy);
    color: var(--pm-color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.questions-list__icon svg {
    width: 20px;
    height: 20px;
}

.questions-list__text {
    font-family: var(--pm-font-sans);
    font-size: var(--pm-text-lg);
    color: var(--pm-color-text);
    text-align: left;
}

/* Handwritten style */
.questions-section--handwritten .questions-list__text {
    font-family: var(--pm-font-script);
    font-size: var(--pm-text-2xl);
}

.questions-section--handwritten .questions-list__item {
    background: transparent;
    border-bottom: 2px dashed var(--pm-color-taupe);
    border-radius: 0;
    padding-left: 0;
}

.questions-section--handwritten .questions-list__icon {
    background: transparent;
    color: var(--pm-color-gold);
    border: 2px solid var(--pm-color-gold);
}

/* Elegant style */
.questions-section--elegant .questions-list__text {
    font-family: var(--pm-font-serif);
    font-size: var(--pm-text-xl);
    font-style: italic;
}

.questions-section--elegant .questions-list__item {
    background: transparent;
    border-left: 3px solid var(--pm-color-burgundy);
    border-radius: 0;
    padding: var(--pm-space-sm) var(--pm-space-lg);
}

.questions-section--elegant .questions-list__icon {
    display: none;
}

/* Minimal style */
.questions-section--minimal .questions-list__item {
    background: var(--pm-color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.questions-section__conclusion {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-2xl);
    font-style: italic;
    color: var(--pm-color-burgundy-dark);
    margin-bottom: var(--pm-space-lg);
}

/* Decorative elements */
.questions-section__decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.deco-line {
    position: absolute;
    background: var(--pm-color-taupe);
    opacity: 0.2;
}

.deco-line--1 {
    width: 150px;
    height: 2px;
    top: 20%;
    left: -50px;
    transform: rotate(-30deg);
}

.deco-line--2 {
    width: 100px;
    height: 2px;
    bottom: 30%;
    right: -30px;
    transform: rotate(20deg);
}

.deco-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--pm-color-taupe);
    border-radius: 50%;
    opacity: 0.1;
    bottom: -100px;
    right: 10%;
}

/* Inverse colors */
.pm-inverse .questions-section__intro {
    color: var(--pm-color-gold);
}

.pm-inverse .questions-list__item {
    background: rgba(255, 255, 255, 0.1);
}

.pm-inverse .questions-list__text {
    color: var(--pm-color-cream);
}

.pm-inverse .questions-section__conclusion {
    color: var(--pm-color-cream);
}

.pm-inverse .questions-list__icon {
    background: var(--pm-color-cream);
    color: var(--pm-color-burgundy-dark);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--pm-color-burgundy-dark);
    color: var(--pm-color-cream);
    padding-top: var(--pm-space-2xl);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: var(--pm-space-2xl);
    padding-bottom: var(--pm-space-xl);
}

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

.footer-logo img {
    max-height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: var(--pm-space-sm);
}

.footer-site-name {
    font-family: var(--pm-font-display);
    font-size: var(--pm-text-xl);
}

.footer-tagline {
    font-family: var(--pm-font-script);
    font-size: var(--pm-text-2xl);
    margin: 0;
    opacity: 0.9;
}

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

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--pm-space-sm);
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    font-size: var(--pm-text-sm);
    color: var(--pm-color-cream);
    opacity: 0.8;
    transition: var(--pm-transition);
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--pm-color-gold);
}

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

.footer-contact-info {
    margin-bottom: var(--pm-space-md);
}

.footer-contact-info p {
    margin: 0;
    font-size: var(--pm-text-sm);
    opacity: 0.9;
}

.footer-contact-info a {
    color: inherit;
    text-decoration: none;
    transition: var(--pm-transition);
}

.footer-contact-info a:hover {
    color: var(--pm-color-gold);
    text-decoration: underline;
}

.footer-contact-info strong {
    display: block;
    margin-bottom: var(--pm-space-xs);
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: var(--pm-space-sm);
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--pm-color-cream);
    transition: var(--pm-transition);
}

.social-link:hover {
    background-color: var(--pm-color-cream);
    color: var(--pm-color-burgundy-dark);
    border-color: var(--pm-color-cream);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--pm-space-md) 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: var(--pm-text-xs);
    opacity: 0.6;
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--pm-color-burgundy);
    color: var(--pm-color-cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(74, 13, 20, 0.25);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--pm-color-burgundy-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 13, 20, 0.35);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Hide on mobile - only for desktop */
@media (max-width: 768px) {
    .back-to-top {
        display: none;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--pm-color-burgundy-dark);
    transition: var(--pm-transition);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --pm-text-5xl: 3rem;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: var(--pm-space-lg);
        padding: var(--pm-space-lg);
        padding-top: calc(94px + var(--pm-space-lg));
        max-width: 700px;
    }

    .hero-split__image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
        transform: none;
    }

    .hero-split__image::before {
        top: 15px;
        left: auto;
        right: -15px;
    }

    .hero-split__content {
        order: 2;
        text-align: center;
        margin-left: 0; /* Reset op tablet */
    }

    .hero-split__subtitle {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--pm-color-taupe);
        padding-top: var(--pm-space-md);
    }

    .two-column,
    .about {
        grid-template-columns: 1fr;
        gap: var(--pm-space-xl);
    }

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

    .services-grid--2-cols,
    .services-grid--3-cols,
    .services-grid--4-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pricing Packages - tablet */
    .pricing-packages--3-cols,
    .pricing-packages--4-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-package--featured {
        transform: scale(1);
    }

    .pricing-package--featured:hover {
        transform: translateY(-4px);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--pm-space-xl);
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--pm-space-md);
    }
}

@media (max-width: 768px) {
    :root {
        --pm-text-4xl: 2.25rem;
        --pm-text-5xl: 2.5rem;
    }

    html {
        font-size: 17px;
    }
    
    body {
        font-size: var(--pm-text-base);
    }
    
    /* Blog Hero - mobile */
    .blog-hero {
        padding: var(--pm-space-2xl) 0 var(--pm-space-xl);
    }
    
    .blog-hero--height-medium,
    .blog-hero--height-large {
        min-height: 40vh;
    }
    
    .blog-hero--height-full {
        min-height: 70vh;
    }
    
    .blog-hero__title {
        font-size: var(--pm-text-2xl);
    }
    
    .blog-hero__breadcrumbs {
        font-size: 0.8rem;
        margin-bottom: var(--pm-space-md);
    }
    
    .blog-hero__meta {
        font-size: 0.75rem;
        gap: 0.5em;
    }
    
    .blog-hero__subtitle {
        font-size: var(--pm-text-lg);
    }
    
    /* FAQ - mobile */
    .faq-section__header--width-75,
    .faq-section__header--width-66,
    .faq-section__header--width-50 {
        max-width: 100%;
    }
    
    .faq-accordion__trigger {
        font-size: var(--pm-text-base);
        padding: var(--pm-space-md) var(--pm-space-xs);
    }
    
    /* Author Box - mobile */
    .author-box--layout-horizontal .author-box__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .author-box__avatar img {
        width: 80px;
        height: 80px;
    }
    
    /* Related Posts - mobile */
    .related-posts__grid--2-cols,
    .related-posts__grid--3-cols,
    .related-posts__grid--4-cols {
        grid-template-columns: 1fr;
    }
    
    .related-posts--layout-list .related-posts__image {
        width: 100px;
    }
    
    /* Single Post - mobile */
    .single-post__title {
        font-size: var(--pm-text-3xl);
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        justify-items: start;
        align-items: center;
        gap: var(--pm-space-xs);
        padding: var(--pm-space-xs) var(--pm-space-md);
    }

    .site-logo {
        justify-content: flex-start;
        align-items: flex-end;
    }

    .logo-link {
        flex-direction: row;
        align-items: flex-end;
        gap: var(--pm-space-sm);
    }

    .site-logo img,
    .site-logo .custom-logo {
        max-height: 105px;
        margin-bottom: -42px; /* Uitsteken aan onderkant */
        margin-left: -5px; /* Iets meer naar links */
    }

    .logo-circle {
        font-size: 2.1rem;
        margin-bottom: -42px; /* Uitsteken aan onderkant */
        margin-left: -5px; /* Iets meer naar links */
    }

    .site-logo::after {
        left: 47px;
        transform: translateX(-50%);
        width: 120px;
        height: 120px;
        top: auto;
        bottom: -47px; /* Cirkel steekt ook uit */
    }

    .site-title-text {
        display: block;
        text-align: left;
        /* Slim schalen: past zich aan per schermgrootte */
        font-size: min(5.5vw, 1.4rem);
        letter-spacing: min(1vw, 0.14em);
        /* Neemt beschikbare ruimte tot aan hamburger */
        flex: 1;
        max-width: calc(100% - 60px);
        overflow: hidden;
        text-overflow: ellipsis;
        /* Verticaal centreren */
        line-height: 1;
        margin: 0;
        padding: 0;
    }
    
    .logo-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: var(--pm-space-sm);
        max-width: calc(100vw - 70px);
    }

    /* Mobile Menu Overlay - Separate element for proper fixed positioning */
    .mobile-menu-overlay {
        display: none;
    }
    
    .mobile-menu-open .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--pm-color-cream);
        z-index: 998;
    }
    
    .nav-left,
    .nav-right {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: flex;
    }
    
    .nav-left {
        top: 25vh;
    }
    
    .nav-right {
        top: 50vh;
    }
    
    .mobile-menu-open .nav-left,
    .mobile-menu-open .nav-right {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-left ul,
    .nav-right ul {
        flex-direction: column;
        gap: var(--pm-space-lg);
        text-align: center;
        align-items: center;
    }
    
    .nav-left a,
    .nav-right a {
        font-size: var(--pm-text-2xl);
        letter-spacing: 0.05em;
        color: var(--pm-color-burgundy);
        display: block;
        padding: var(--pm-space-xs) 0;
    }
    
    .nav-left a:hover,
    .nav-right a:hover {
        color: var(--pm-color-burgundy-dark);
    }

    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        right: var(--pm-space-md);
        top: var(--pm-space-sm);
        z-index: 1001;
    }
    
    /* Hamburger animation */
    .mobile-menu-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Prevent body scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    /* Keep header visible above menu overlay */
    .mobile-menu-open .site-header {
        z-index: 1000;
        background-color: transparent;
        border-bottom-color: transparent;
        box-shadow: none;
    }

    .site-main {
        padding-top: 50px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: var(--pm-space-lg);
        padding: var(--pm-space-lg);
        padding-top: 50px;
        max-width: 100%;
        margin: 0;
    }

    .hero-split__image {
        order: 1;
        max-width: 100%;
        transform: none;
        margin: 0 auto;
    }

    .hero-split__image::before {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }

    .hero-split__content {
        order: 2;
        text-align: center;
        align-items: center;
        padding: var(--pm-space-md) 0;
        margin-left: 0;
    }

    .hero-split__label {
        text-align: center;
        margin-bottom: var(--pm-space-xs);
        font-size: var(--pm-text-sm);
        letter-spacing: 0.2em;
    }

    .hero-split__title {
        font-size: var(--pm-text-3xl);
        text-align: center;
        margin-bottom: var(--pm-space-sm);
        line-height: 1.2;
    }

    .hero-split__subtitle {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--pm-color-taupe);
        padding-top: var(--pm-space-md);
        margin-bottom: var(--pm-space-md);
    }

    .hero-split__content .btn {
        align-self: center;
    }

    .section {
        padding: var(--pm-space-2xl) 0;
    }

    .usp-list {
        flex-direction: column;
        align-items: center;
    }

    .services-grid-section {
        padding: var(--pm-space-xl) 0;
    }

    .services-grid-section__header {
        margin-bottom: var(--pm-space-lg);
    }

    .services-grid-section__intro {
        margin-top: var(--pm-space-sm);
    }

    .services-grid-section__intro p {
        font-size: var(--pm-text-base);
    }

    .services-grid-section--width-full .container {
        padding: 0 var(--pm-space-md);
    }

    .services-grid--1-cols,
    .services-grid--2-cols,
    .services-grid--3-cols,
    .services-grid--4-cols {
        grid-template-columns: 1fr;
        gap: var(--pm-space-lg);
    }

    .services-grid__item {
        padding: var(--pm-space-md) var(--pm-space-sm);
        text-align: center;
    }

    .services-grid__icon {
        width: 36px;
        height: 36px;
        margin: 0 auto var(--pm-space-sm);
    }

    .services-grid__title {
        font-size: var(--pm-text-lg);
        margin-bottom: var(--pm-space-xs);
        text-align: center;
    }

    .services-grid__text {
        font-size: var(--pm-text-sm);
        text-align: center;
    }

    /* Pricing Packages - mobiel */
    .pricing-packages-section {
        padding: var(--pm-space-lg) 0;
    }

    .pricing-packages-section__header {
        margin-bottom: var(--pm-space-md);
    }

    .pricing-packages-section__intro p {
        font-size: var(--pm-text-base);
    }

    .pricing-packages--2-cols,
    .pricing-packages--3-cols,
    .pricing-packages--4-cols {
        grid-template-columns: 1fr;
        gap: var(--pm-space-md);
    }

    .pricing-package {
        padding: var(--pm-space-md);
    }

    .pricing-package__title {
        font-size: var(--pm-text-xl);
    }

    .pricing-package__price {
        font-size: var(--pm-text-lg);
    }

    .pricing-package__badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    /* Contact Form Section - mobiel */
    .contact-form-section {
        padding: var(--pm-space-xl) 0;
    }

    .contact-form-section__grid {
        grid-template-columns: 1fr;
        gap: var(--pm-space-lg);
    }

    .contact-form-section__content {
        text-align: center;
        margin-bottom: var(--pm-space-md);
    }

    .contact-form-section__content .section-title {
        font-size: var(--pm-text-2xl);
        margin-bottom: var(--pm-space-sm);
    }

    .contact-form-section__text {
        font-size: var(--pm-text-sm);
        line-height: 1.7;
    }

    .contact-form-section__info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: var(--pm-space-md);
    }

    .contact-info-item {
        justify-content: center;
    }

    .contact-form-section__image {
        margin-top: var(--pm-space-lg);
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-form-section__image-wrapper {
        aspect-ratio: 1 / 1;
    }
    
    .contact-form-section__image-wrapper img {
        height: 100%;
        object-fit: cover;
    }

    .contact-form-section__image::before {
        top: 10px;
        left: -10px;
        right: 10px;
        bottom: -10px;
    }

    .contact-form-section__form {
        padding: 0;
    }

    /* CF7 form mobiel - compactere afstanden */
    .cf7-row--half {
        grid-template-columns: 1fr;
        gap: var(--pm-space-xs);
    }

    .cf7-row {
        margin-bottom: var(--pm-space-xs);
    }

    .cf7-row label {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }

    .cf7-row input[type="text"],
    .cf7-row input[type="email"],
    .cf7-row input[type="tel"],
    .cf7-row select,
    .cf7-row textarea {
        padding: 10px var(--pm-space-sm);
        font-size: var(--pm-text-sm);
    }
    
    /* Minder ruimte tussen formuliervelden */
    .wpcf7-form p,
    .contact-form-section__form p {
        margin-bottom: var(--pm-space-xs) !important;
    }
    
    .contact-form-section__form .gfield {
        margin-bottom: var(--pm-space-xs);
    }

    .cf7-row textarea {
        min-height: 80px;
    }

    .cf7-row--submit {
        margin-top: var(--pm-space-md);
        text-align: center;
    }

    .cf7-row input[type="submit"],
    .wpcf7-submit,
    input.wpcf7-submit {
        padding: var(--pm-space-sm) var(--pm-space-xl) !important;
        font-size: var(--pm-text-sm) !important;
    }

    .section-title {
        font-size: var(--pm-text-2xl);
        margin-bottom: var(--pm-space-sm);
        line-height: 1.2;
    }

    .section-title--playful,
    .section-title--playful-bold {
        font-size: var(--pm-text-2xl);
    }

    .section-title--handwritten,
    .section-title--handwritten-bold {
        font-size: var(--pm-text-2xl);
    }

    .section-label {
        font-size: 0.75rem;
        margin-bottom: var(--pm-space-xs);
    }
}

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

    .container {
        padding: 0 var(--pm-space-md);
    }

    .hero-split {
        padding: var(--pm-space-md);
        padding-top: 45px;
        gap: var(--pm-space-md);
    }

    .hero-split__image {
        max-width: 100%;
    }

    .hero-split__image::before {
        top: 8px;
        left: 8px;
        right: -8px;
        bottom: -8px;
    }

    .hero-split__content {
        padding: var(--pm-space-sm) 0;
        text-align: center;
        align-items: center;
    }

    .hero-split__title {
        font-size: var(--pm-text-2xl);
        line-height: 1.2;
        text-align: center;
    }

    .hero-split__subtitle {
        font-size: var(--pm-text-base);
        line-height: 1.7;
        color: var(--pm-color-text-light);
        padding-top: var(--pm-space-sm);
        text-align: center;
    }

    .hero-split__label {
        font-size: var(--pm-text-sm);
        text-align: center;
        letter-spacing: 0.2em;
    }

    .site-logo img,
    .site-logo .custom-logo {
        max-height: 84px;
        margin-bottom: -36px; /* Uitsteken aan onderkant */
        margin-left: -5px; /* Iets meer naar links */
    }

    .logo-circle {
        font-size: 1.85rem;
        margin-bottom: -36px; /* Uitsteken aan onderkant */
        margin-left: -5px; /* Iets meer naar links */
    }

    .site-title-text {
        font-size: min(3.5vw, 0.9rem);
    }

    .site-logo::after {
        width: 100px;
        height: 100px;
        top: auto;
        bottom: -42px; /* Cirkel steekt ook uit */
        left: 37px;
        transform: translateX(-50%);
    }

    /* Contact Form - klein mobiel */
    .contact-form-section__content .section-title {
        font-size: var(--pm-text-xl);
    }

    .contact-form-section__image {
        max-width: 220px;
    }

    .cf7-row input[type="submit"],
    .wpcf7-submit,
    input.wpcf7-submit {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        padding: var(--pm-space-md) var(--pm-space-xl) !important;
        font-size: var(--pm-text-sm) !important;
    }
}

