/*
Theme Name: Droom Je Bouwhuis
Theme URI: https://www.droomjebouwhuis.nl
Author: Nienke - HE Designs
Author URI: https://www.droomjebouwhuis.nl
Description: Custom WordPress theme for Droom Je Bouwhuis - Interieur designer & styliste. Waar verhalen leven.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: droomjebouwhuis
Tags: custom-theme, interior-design, portfolio
*/

/* ============================================================
   CSS CUSTOM PROPERTIES - BRAND COLORS & TYPOGRAPHY
   ============================================================ */
:root {
    /* Primary Brand Colors */
    --color-purple-dark:    #3D0F4A;
    --color-wine:           #690036;
    --color-mauve:          #B27894;
    --color-olive:          #7D8726;
    --color-terracotta:     #A33D38;
    --color-purple-mid:     #8F7094;

    /* Light Accent Colors */
    --color-pink-light:     #EFB5CB;
    --color-green-light:    #CFE77B;
    --color-salmon-light:   #F78D7E;
    --color-lavender-light: #B89ADD;

    /* Neutral & Background */
    --color-white:          #FFFFFF;
    --color-cream:          #FAF5F2;
    --color-pink-pale:      #F5C4D1;
    --color-green-pale:     #E8FCAB;
    --color-coral-pale:     #F7786B;
    --color-purple-pale:    #D1C2F5;

    /* Semantic color assignments */
    --color-primary:        var(--color-purple-dark);
    --color-secondary:      var(--color-wine);
    --color-accent:         var(--color-mauve);
    --color-accent-green:   var(--color-olive);
    --color-bg:             var(--color-cream);
    --color-bg-white:       var(--color-white);
    --color-text:           #2A1A30;
    --color-text-light:     #6B5A72;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.7;

    /* Spacing */
    --spacing-xs:   0.5rem;
    --spacing-sm:   1rem;
    --spacing-md:   2rem;
    --spacing-lg:   3rem;
    --spacing-xl:   5rem;
    --spacing-xxl:  8rem;

    /* Layout */
    --container-max: 1200px;
    --container-wide: 1400px;

    /* Borders & Radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  40px;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(61, 15, 74, 0.08);
    --shadow-md:  0 4px 20px rgba(61, 15, 74, 0.12);
    --shadow-lg:  0 8px 40px rgba(61, 15, 74, 0.18);

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

    /* Layout heights for fixed header + nav bar */
    --header-height: 160px;
    --navbar-height: 50px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-primary);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container--wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section--sm {
    padding: var(--spacing-xl) 0;
}

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

.section--bg-white {
    background-color: var(--color-white);
}

.section--bg-purple {
    background-color: var(--color-wine);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.section--bg-pink {
    background-color: var(--color-pink-pale);
}

/* Grid Helpers */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-xl);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--color-coral-pale);
    color: var(--color-white);
    border-color: var(--color-coral-pale);
}

.btn--primary:hover {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--white {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn--white:hover {
    background-color: var(--color-cream);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn--accent {
    background-color: var(--color-mauve);
    color: var(--color-white);
    border-color: var(--color-mauve);
}

.btn--accent:hover {
    background-color: var(--color-wine);
    border-color: var(--color-wine);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-mauve);
    margin-bottom: var(--spacing-xs);
}

.section-header__title {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.section-header__title--white {
    color: var(--color-white);
}

.section-header__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header__subtitle--white {
    color: rgba(255,255,255,0.8);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--color-purple-dark);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px var(--spacing-md);
    max-width: var(--container-wide);
    margin: 0 auto;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-decoration: none;
    color: var(--color-white);
}

.site-logo:hover {
    color: rgba(255, 255, 255, 0.85);
}

.site-logo__image {
    height: 50px;
    width: auto;
}

/* WordPress custom logo output */
.site-logo .custom-logo-link {
    display: block;
    line-height: 0;
}

.site-logo .custom-logo {
    height: 60px;
    width: auto;
    max-width: none;
    display: block;
}

.site-logo__text {
    display: flex;
    flex-direction: column;
}

.site-logo__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.site-logo__tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Navigation Bar (below header) */
.main-nav-bar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-green-pale);
    transition: box-shadow var(--transition);
}

.main-nav-bar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    height: var(--navbar-height);
    box-sizing: border-box;
}

.main-nav__list {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.main-nav__item {
    position: relative;
}

.main-nav__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-purple-dark);
    letter-spacing: 0.03em;
    padding: 0.3rem 0;
    transition: color var(--transition);
    position: relative;
}

.main-nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-mauve);
    transition: width var(--transition);
}

.main-nav__link:hover,
.main-nav__link.current-menu-item {
    color: var(--color-wine);
}

.main-nav__link:hover::after,
.main-nav__link.current-menu-item::after {
    width: 100%;
}

.nav-bar__contact {
    flex-shrink: 0;
}

.btn--nav-contact {
    display: inline-block;
    background: var(--color-purple-dark);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.6rem;
    border-radius: var(--radius-xl);
    transition: background var(--transition), transform var(--transition);
    border: 2px solid var(--color-purple-dark);
}

.btn--nav-contact:hover {
    background: var(--color-wine);
    border-color: var(--color-wine);
    color: var(--color-white);
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    cursor: pointer;
    padding: 5px;
}

.hamburger__line {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-height) + var(--navbar-height));
}

.hero--home {
    background: var(--color-wine);
}

/* Hero Slider */
.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide--active {
    opacity: 1;
}

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

/* overlay removed from full image — background lives on .hero__inner instead */

/* Slider Arrows */
.hero__arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    font-size: 2rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
    font-family: var(--font-primary);
}

.hero__arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero__arrow--prev {
    left: var(--spacing-md);
}

.hero__arrow--next {
    right: var(--spacing-md);
}

/* Slider Dots */
.hero__dots {
    position: absolute;
    z-index: 3;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
}

.hero__dot--active,
.hero__dot:hover {
    background: var(--color-white);
    transform: scale(1.2);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.hero__inner {
    max-width: 640px;
    background: rgba(61, 15, 74, 0.72);
    padding: 3rem;
    border-radius: var(--radius-md);
}

.hero__tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-pink-light);
    margin-bottom: var(--spacing-sm);
}

.hero__title {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
}

.hero__title span {
    color: var(--color-pink-light);
    display: block;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Hero Decorative Elements */
.hero__decoration {
    position: absolute;
    z-index: 1;
}

.hero__decoration--circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(239, 181, 203, 0.1);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.hero__decoration--dots {
    right: 5%;
    bottom: 15%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, rgba(239, 181, 203, 0.4) 1px, transparent 1px);
    background-size: 15px 15px;
}

/* Page Hero (for inner pages) */
.page-hero {
    padding: calc(var(--header-height) + var(--navbar-height) + 50px) 0 80px;
    background: var(--color-wine);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero__title {
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.page-hero__subtitle {
    color: var(--color-mauve);
    font-size: 1.1rem;
}

/* ============================================================
   ABOUT SECTION (HOMEPAGE)
   ============================================================ */
.about-home {
    background: var(--color-white);
}

.about-home__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.about-home__image-wrap {
    position: relative;
}

.about-home__image {
    border-top-right-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

.about-home__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-home__image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-pink-light);
    color: var(--color-primary);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-home__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-mauve);
    margin-bottom: var(--spacing-xs);
}

.about-home__title {
    margin-bottom: var(--spacing-md);
}

.about-home__text {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1.05rem;
}

.about-home__signature {
    font-style: italic;
    color: var(--color-mauve);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

/* ============================================================
   ONZE DIENSTEN — ICON STRIP SECTION
   ============================================================ */
.diensten-icons-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-wine);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    position: relative;
    overflow: hidden;
}

.diensten-icons-box {
    text-align: center;
}

.diensten-icons__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.diensten-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.diensten-icon-item img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;
}

.diensten-icon-item__label {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ============================================================
   DIENSTEN PAGE — TIMELINE LAYOUT
   ============================================================ */
.diensten-timeline {
    position: relative;
    background: var(--color-cream);
}

.diensten-timeline__svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

.diensten-timeline__path {
    fill: none;
    stroke: var(--color-mauve);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 1 16;
    opacity: 0.8;
    animation: djb-timeline-flow 5s linear infinite;
}

@keyframes djb-timeline-flow {
    to { stroke-dashoffset: -170; }
}

@media (prefers-reduced-motion: reduce) {
    .diensten-timeline__path {
        animation: none;
    }
}

.dienst-section {
    position: relative;
}

.dienst-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-white);
    z-index: 1;
    animation: djb-marker-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: box-shadow 0.3s ease, filter 0.3s ease;
}

.dienst-marker::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.5;
    z-index: -1;
    animation: djb-marker-ping 2.4s ease-out infinite;
}

.dienst-section:hover .dienst-marker {
    box-shadow: var(--shadow-lg);
    filter: brightness(1.15) saturate(1.3);
}

@keyframes djb-marker-pop {
    to { transform: translate(-50%, -50%) scale(1); }
}

@keyframes djb-marker-ping {
    0%   { transform: scale(0.6); opacity: 0.5; }
    80%, 100% { transform: scale(1.8); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .dienst-marker::after {
        animation: none;
        display: none;
    }
}

.dienst-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.dienst-row--reverse {
    flex-direction: row-reverse;
}

.dienst-row__media {
    flex: 0 0 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lg);
}

.dienst-row__content {
    flex: 1;
}

.dienst-row__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.dienst-row__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-mauve);
    background: var(--color-white);
}

.dienst-row__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dienst-row__number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-pink-pale);
    line-height: 1;
}

@media (max-width: 900px) {
    .diensten-timeline__svg,
    .dienst-marker {
        display: none;
    }

    .dienst-row,
    .dienst-row--reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .dienst-row__media {
        flex: none;
        width: 100%;
    }
}

/* ============================================================
   PROJECTS SECTION & CARDS
   ============================================================ */
.projecten-section {
    background: var(--color-white);
}

.projecten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

/* ---- Projecten slider (homepage 3-up) ---- */
.projecten-slider-wrap {
    position: relative;
    padding: 0 52px;
}

.projecten-slider {
    overflow: hidden;
}

.projecten-slider__track {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.45s ease;
    will-change: transform;
}

.projecten-slider__item {
    flex: 0 0 calc((100% - 2 * var(--spacing-md)) / 3);
    min-width: 0;
}

.projecten-slider__arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 2;
    background: var(--color-white);
    border: 2px solid var(--color-purple-dark);
    color: var(--color-purple-dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
    box-shadow: var(--shadow-sm);
    padding: 0;
}

.projecten-slider__arrow:hover {
    background: var(--color-purple-dark);
    color: var(--color-white);
}

.projecten-slider__arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.projecten-slider__arrow--prev { left: 0; }
.projecten-slider__arrow--next { right: 0; }

.project-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid rgba(61, 15, 74, 0.14);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.project-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

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

.project-card:hover .project-card__image img {
    transform: scale(1.08);
}

.project-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-pink-pale), var(--color-purple-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-mauve);
    font-size: 3rem;
}

.project-card__badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-xl);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.project-card__body {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-card__location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--color-mauve);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-card__title {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.project-card__excerpt {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-card__body > .btn {
    align-self: flex-start;
    margin-top: auto;
}

.project-card__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-mauve);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.3rem;
    transition: all var(--transition);
    margin-top: auto;
}

.project-card__link:hover {
    color: var(--color-primary);
    gap: 0.6rem;
}

.project-card__link::after {
    content: '→';
}

/* ============================================================
   TESTIMONIAL SECTION
   ============================================================ */
.testimonial-section {
    background: var(--color-wine);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ============================================================
   LOGO SHAPES — reusable decorative background motif
   (extracted from Logoset.pdf, used on dark purple/wine sections
   site-wide: testimonial, hero, CTA and diensten-icons sections)
   ============================================================ */
.has-logo-shapes {
    position: relative;
    overflow: hidden;
}

.logo-shape {
    position: absolute;
    display: block;
    background-image: url('assets/images/logo-shapes.svg');
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

/* Lift section content above the (unpositioned, z-index:auto) logo shapes */
.page-hero > .container,
.cta-section > .container,
.diensten-icons-section > .container,
.section--bg-purple > .container {
    position: relative;
    z-index: 1;
}

.logo-shape--1 {
    width: 420px;
    height: 442px;
    top: -110px;
    right: -70px;
    opacity: 0.14;
    transform: rotate(18deg);
}

.logo-shape--2 {
    width: 300px;
    height: 316px;
    bottom: -90px;
    left: -70px;
    opacity: 0.14;
    transform: rotate(-165deg);
}

.logo-shape--3 {
    width: 190px;
    height: 200px;
    top: -70px;
    left: -90px;
    opacity: 0.09;
    transform: rotate(-35deg);
}

.testimonial-inner {
    position: relative;
    z-index: 1;
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--color-pink-light);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-white);
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    font-style: italic;
    line-height: 1.4;
}

.testimonial-author {
    color: var(--color-pink-light);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================================
   GALLERY / INSPIRATIE SECTION
   ============================================================ */
.gallerij-section {
    background: var(--color-cream);
}

.gallerij-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xs);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallerij-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

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

.gallerij-item:hover img {
    transform: scale(1.08);
}

.gallerij-item__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(61, 15, 74, 0);
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallerij-item:hover .gallerij-item__overlay {
    background: rgba(61, 15, 74, 0.4);
}

.gallerij-item__icon {
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallerij-item:hover .gallerij-item__icon {
    opacity: 1;
}

.gallerij-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-purple-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: var(--spacing-xl) 0;
}

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: var(--color-white);
}

.footer-logo:hover {
    color: var(--color-white);
}

.footer-logo__mark {
    display: block;
    flex-shrink: 0;
    line-height: 0;
}

.footer-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-transform: uppercase;
}

.footer-logo__line1,
.footer-logo__line2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.01em;
}

.footer-logo__line1 strong {
    font-weight: 800;
}

/* Contact pills */
.footer-contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-contact-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact-pill__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-pink-pale);
    color: var(--color-purple-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-pill__value {
    height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 1.4rem;
    border-radius: 999px;
    background: var(--color-green-pale);
    color: var(--color-purple-dark);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: filter var(--transition);
}

.footer-contact-pill__value:hover {
    filter: brightness(0.95);
}

/* Social links */
.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--color-green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-purple-dark);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--color-white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) 0;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom__links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom__links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-bottom__links a:hover {
    color: var(--color-white);
}

/* ============================================================
   DIENSTEN PAGE
   ============================================================ */
.dienst-detail {
    background: var(--color-white);
    margin-bottom: var(--spacing-xl);
}

.dienst-detail:nth-child(even) .dienst-detail__inner {
    flex-direction: row-reverse;
}

.dienst-detail__inner {
    display: flex;
    gap: var(--spacing-xxl);
    align-items: center;
}

.dienst-detail__image {
    flex: 0 0 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.dienst-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dienst-detail__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 4rem;
}

.dienst-detail__content {
    flex: 1;
}

.dienst-detail__number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-pink-pale);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.dienst-detail__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-mauve);
    margin-bottom: var(--spacing-xs);
}

.dienst-detail__title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.dienst-detail__text {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.dienst-detail__features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: var(--spacing-lg);
}

.dienst-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.dienst-feature::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--color-green-light);
    color: var(--color-olive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   PROJECTS ARCHIVE PAGE
   ============================================================ */
.projecten-archive {
    background: var(--color-cream);
}

.projecten-filter {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
    border: 2px solid var(--color-pink-pale);
    background: var(--color-white);
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.projecten-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

/* ============================================================
   SINGLE PROJECT PAGE
   ============================================================ */
.project-single {
    background: var(--color-white);
}

.project-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xxl);
    align-items: start;
    margin-bottom: var(--spacing-xxl);
}

.project-header__meta {
    position: sticky;
    top: 100px;
}

.project-meta-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(61, 15, 74, 0.08);
}

.project-meta-item:last-child {
    border-bottom: none;
}

.project-meta-item__icon {
    width: 40px;
    height: 40px;
    background: var(--color-pink-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.project-meta-item__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-mauve);
    margin-bottom: 0.2rem;
}

.project-meta-item__value {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 600;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.project-gallery__main {
    grid-column: span 2;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.project-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-gallery__thumb {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.project-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-gallery__thumb:hover img {
    transform: scale(1.05);
}

/* ============================================================
   OVER MIJ (ABOUT) PAGE
   ============================================================ */
.about-page {
    background: var(--color-white);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: var(--spacing-xxl);
}

.about-intro__image {
    position: relative;
}

.about-intro__image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
}

.about-intro__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro__accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: var(--color-pink-pale);
    border-radius: 50%;
    z-index: -1;
}

.about-values {
    background: var(--color-cream);
    padding: var(--spacing-xxl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.value-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
}

.value-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.value-card__title {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.value-card__text {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ============================================================
   GALLERIJ (GALLERY) PAGE
   ============================================================ */
.gallery-page {
    background: var(--color-cream);
}

.gallery-masonry {
    columns: 3;
    column-gap: var(--spacing-sm);
}

.gallery-masonry__item {
    break-inside: avoid;
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-masonry__item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-masonry__item:hover img {
    transform: scale(1.03);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
}

.lightbox__close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 3.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    z-index: 1;
    transition: background 0.2s;
    user-select: none;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }
.lightbox__nav[hidden] { display: none; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.contact-form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.contact-info-wrap {
    position: sticky;
    top: 100px;
}

.contact-info__title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

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

.contact-info-item__icon {
    width: 50px;
    height: 50px;
    background: var(--color-pink-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-mauve);
    margin-bottom: 0.2rem;
}

.contact-info-item__value {
    font-size: 0.95rem;
    color: var(--color-text);
}

.contact-info-item__value a {
    color: var(--color-text);
    transition: color var(--transition);
}

.contact-info-item__value a:hover {
    color: var(--color-primary);
}

/* Contact Form */
.contact-form__title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 2px solid rgba(61, 15, 74, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-cream);
    transition: all var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-mauve);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(178, 120, 148, 0.1);
}

.form-control::placeholder {
    color: rgba(107, 90, 114, 0.5);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-submit {
    margin-top: var(--spacing-md);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--color-wine);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section__title {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-section__text {
    color: var(--color-mauve);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xl);
}

.pagination__item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    border: 2px solid rgba(61, 15, 74, 0.1);
    transition: all var(--transition);
}

.pagination__item:hover,
.pagination__item.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-cream);
}

.error-page__number {
    font-size: clamp(4.5rem, 20vw, 10rem);
    font-weight: 700;
    color: var(--color-pink-pale);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.error-page__title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.error-page__text {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1100px) {
    .diensten-icons__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .diensten-icon-item img {
        width: 120px;
        height: 120px;
    }

    .footer-bar {
        justify-content: center;
        text-align: center;
    }

    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 900px) {
    .projecten-slider-wrap { padding: 0 40px; }
    .projecten-slider__item { flex: 0 0 calc((100% - var(--spacing-md)) / 2); }

    .about-home__inner,
    .about-intro,
    .contact-grid,
    .project-header,
    .dienst-detail__inner,
    .dienst-detail:nth-child(even) .dienst-detail__inner {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .project-header__meta,
    .contact-info-wrap {
        position: static;
    }

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

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

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

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-xxl: 5rem;
        --header-height: 72px;
    }

    .header-inner {
        padding: 15px var(--spacing-md);
    }

    .site-logo .custom-logo {
        height: 40px;
    }

    .site-logo__image {
        height: 36px;
    }

    .main-nav-bar {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        transform: translateY(-150%);
        opacity: 0;
        transition: transform var(--transition), opacity var(--transition);
        box-shadow: var(--shadow-lg);
        border-top: 2px solid rgba(61, 15, 74, 0.15);
    }

    .main-nav-bar.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: var(--spacing-md);
    }

    .main-nav__list {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: flex-start;
        width: 100%;
    }

    .nav-bar__contact {
        margin-top: var(--spacing-sm);
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: var(--header-height);
    }

    .hero__inner {
        padding: 1.75rem;
    }

    .diensten-icon-item img {
        width: 100px;
        height: 100px;
    }

    .footer-bar {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .cta-section__actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom__inner {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .gallery-masonry {
        columns: 1;
    }
}

@media (max-width: 600px) {
    .projecten-grid,
    .projecten-masonry {
        grid-template-columns: 1fr;
    }

    .projecten-slider-wrap { padding: 0 36px; }
    .projecten-slider__item { flex: 0 0 100%; }
    .projecten-slider__arrow { width: 36px; height: 36px; font-size: 1.3rem; }

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

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

    .project-gallery {
        grid-template-columns: 1fr;
    }

    .project-gallery__main {
        grid-column: span 1;
    }

    .lightbox__close {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    .lightbox__nav--prev { left: 0.5rem; }
    .lightbox__nav--next { right: 0.5rem; }
}

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */
.alignleft  { float: left; margin: 0 var(--spacing-md) var(--spacing-sm) 0; }
.alignright { float: right; margin: 0 0 var(--spacing-sm) var(--spacing-md); }
.aligncenter { display: block; margin: var(--spacing-sm) auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--color-text-light); text-align: center; padding-top: 0.5rem; }
.sticky { /* sticky post style */ }
.screen-reader-text { position: absolute; left: -9999em; }
