
/*
Theme Name: Work & ReWire
Description: Custom WordPress Theme for Work & ReWire
Version: 1.0
*/

:root {
    /* Kleuren [cite: 101] */
    --color-main: #fae59b;
    --color-second: #0000ff;
    --color-light-grey: #f5f7fa;
    --color-dark-grey: #1a1a1a;
    --color-black: #1a1a1a;

    /* Mobile Typography (390px base) */
    --fs-h1: 1.5rem;          /* 24px - Figtree SemiBold */
    --lh-h1: 1.5rem;          /* 24px */
    --fs-h2: 1.3125rem;       /* 21px - Figtree SemiBold */
    --lh-h2: 1.5rem;          /* 24px */
    --fs-base: 1.5rem;        /* 24px - Figtree Light */
    --lh-base: 1.5rem;        /* 24px */
    --fs-copy: 1.3125rem;     /* 21px - Figtree Regular */
    --lh-copy: 1.5rem;        /* 24px */
    --fs-testimonial: 0.875rem; /* 14px */
    --lh-testimonial: 1rem;   /* 16px */
    --fs-link: 1.3125rem;     /* 21px - Figtree SemiBold */
    --lh-link: 1.5rem;        /* 24px */
    
    /* Layout [cite: 127-131] */
    --container-mobile: 360px;
    --header-height-mobile: 120px;
    --page-gutter: 30px;
}

@media (min-width: 768px) {
    :root {
        /* Desktop Typography */
        --fs-h1: 3rem;        /* 48px - Figtree SemiBold */
        --lh-h1: 3rem;        /* 48px */
        --fs-h2: 1.5rem;      /* 24px - Figtree SemiBold */
        --lh-h2: 1.5rem;      /* 24px */
        --fs-base: 2.25rem;   /* 36px - Figtree Light */
        --lh-base: 2.625rem;  /* 42px */
        --fs-copy: 1.125rem;  /* 18px - Figtree Regular */
        --lh-copy: 1.5rem;    /* 24px */
        --fs-testimonial: 1.125rem; /* 18px */
        --lh-testimonial: 1.3125rem; /* 21px */
        --fs-link: 1.5rem;    /* 24px - Figtree SemiBold */
        --lh-link: 2.25rem;   /* 36px */
        
        --container-desktop: 800px;
        --page-gutter: 15px;
    }
}

/* ===========================
   BASE STYLES
   =========================== */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', sans-serif;
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    color: var(--color-black);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-light-grey);
}

h1 {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    font-weight: 600; /* SemiBold */
    margin: 0 0 1rem 0;
}

h2, h3, h4, h5, h6 {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
    font-weight: 600; /* SemiBold */
    margin: 0 0 1rem 0;
}

p {
    font-size: var(--fs-copy);
    line-height: var(--lh-copy);
    font-weight: 400; /* Regular */
    margin: 0 0 1rem 0;
}

a {
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

/* ===========================
   LAYOUT - MOBILE FIRST (390px)
   =========================== */

.site-main {
    min-height: 50vh;
    padding-top: var(--header-height-mobile);
}

/* Content Container */
.content-wrapper,
.page-wrapper,
.single-wrapper {
    width: 100%;
    max-width: var(--container-mobile);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

/* Ensure blocks connect consistently across browsers (incl. Firefox). */
.hero-block,
.intro-block,
.image-block,
.basic-text-block,
.about-content-block,
.service-list-block,
.highlight-block,
.testimonial-block {
    margin: 0;
    display: flow-root;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.site-header {
    height: var(--header-height-mobile);
    background-color: var(--color-main);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 12px 0 0;
    position: relative;
}

.header-logo {
    display: flex;
    align-items: stretch;
    height: 100%;
    margin-left: 5px;
}

.header-logo a,
.header-logo picture {
    display: block;
    line-height: 0;
    height: 100%;
}

.logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: left center;
}

/* Desktop Navigation in Header */
.desktop-nav {
    display: none;
}

.desktop-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu li {
    margin: 0;
}

.desktop-menu a {
    font-size: 1.5rem;
    line-height: normal;
    font-weight: 600;
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.desktop-menu a:hover {
    opacity: 0.7;
}

/* Hamburger Menu (Mobile Only) */
.hamburger-menu {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: none;
    outline: 0;
    position: absolute;
    top: 40px;
    right: 12px;
}

.mobile-only {
    display: flex;
}

.hamburger-line {
    width: 20px;
    height: 3.4082px;
    background-image: url("svg/streep.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Fullscreen Navigation */
.fullscreen-nav {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height-mobile));
    background-color: #fae59b;
    z-index: 950;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-24px);
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s ease;
    overflow: hidden;
}

.fullscreen-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-container {
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 0 3.25rem 60px;
    text-align: left;
}

.primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-menu > li {
    margin: 0.85rem 0 1rem;
}

.primary-menu > li > a {
    font-size: 24px;
    line-height: 48px;
    color: #0000ff;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
}

.primary-menu > li.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.primary-menu > li.menu-item-has-children > a::after {
    content: "\2193";
    color: #0000ff;
    font-size: 0.95em;
    line-height: 1;
    transform-origin: center;
    transition: transform 0.28s ease;
}

.primary-menu > li.menu-item-has-children.is-expanded > a::after {
    transform: rotate(180deg);
}

.primary-menu .sub-menu {
    list-style: none;
    padding: 0.25rem 0 0 0;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: max-height 1s ease, opacity 0.6s ease, transform 1s ease;
}

.primary-menu > li.menu-item-has-children.is-expanded > .sub-menu {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
}

.primary-menu .sub-menu li {
    margin: 0.3rem 0;
}

.primary-menu .sub-menu a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 24px;
    line-height: 48px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    color: #1a1a1a;
}

.primary-menu .sub-menu a::after {
    content: "";
    width: 15px;
    height: 13px;
    margin-left: 0.35rem;
    position: relative;
    top: 2px;
    background-image: url("svg/pijl.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex: 0 0 15px;
}

/* Gele balk onderaan de mobile menu overlay */
.fullscreen-nav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 22px;
    background-color: var(--color-main);
}

/* In menu-state loopt oranje onder logo door */
body.menu-open .site-header {
    background-color: #fae59b;
}

/* ===========================
   HERO BLOCK
   =========================== */

.hero-block {
    width: 100%;
    background-color: var(--color-light-grey);
    margin-top: 0;
}

.hero-payoff {
    width: 100%;
    max-width: 390px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f7fa;
    padding: 0 var(--page-gutter);
    padding-left: 35px;
}

.hero-payoff span {
    font-size: 1.125rem;
    line-height: 1.4rem;
    color: #1a1a1a;
    display: block;
}

.hero-container {
    width: 100%;
    max-width: 390px;
    height: 270px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-placeholder {
    text-align: center;
    padding: 2rem;
    border: 2px dashed var(--color-dark-grey);
}

.hero-svg-wrapper,
.hero-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-svg-mobile,
.hero-svg-desktop {
    width: 100%;
    height: 100%;
}

.hero-svg-desktop {
    display: none;
}

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

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

/* ===========================
   INTRO BLOCK
   =========================== */

.intro-block {
    padding: 2rem 0;
    background-color: var(--color-light-grey);
    width: 100%;
    display: block;
}

.intro-container {
    max-width: var(--container-mobile);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.intro-heading {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    font-weight: 600;
    color: var(--color-second);
    text-transform: none;
    margin-bottom: 1.25rem;
}

.intro-copy {
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    font-weight: 300; /* Light */
    color: var(--color-black);
}

.intro-copy p {
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    font-weight: 300; /* Light */
    color: var(--color-black);
}

/* Intro 1 copy uses --lh-base directly (36/42 on desktop). */
.intro-block-primary .intro-copy,
.intro-block-primary .intro-copy p {
    line-height: var(--lh-base);
}

/* ===========================
   BASIC TEXT BLOCK (grijze sectie)
   =========================== */

.basic-text-block {
    background-color: #ffffff;
    padding: 2rem 0;
}

.basic-text-container {
    max-width: var(--container-mobile);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.basic-text-heading {
    font-size: 1.125rem;   /* 18px */
    line-height: 1.5rem; /* 24px */
    font-weight: 600;
    color: var(--color-second);
    text-transform: none;
    letter-spacing: 0.025em; /* tracking 25 */
    margin-bottom: 1rem;
}

.basic-text-copy,
.basic-text-copy p,
.basic-text-copy li,
.basic-text-copy a {
    font-size: 1.125rem;   /* 18px */
    line-height: 1.5rem; /* 24px */
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: 0.025em; /* tracking 25 */
}

/* About page: Intro 2 + testimonial layout */
.about-content-block {
    background-color: #ffffff;
    padding: 2rem 0;
}

.about-content-container {
    max-width: var(--container-mobile);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.about-content-block .basic-text-block {
    padding: 0;
}

.about-content-block .basic-text-container {
    max-width: none;
    padding: 0;
}

.about-testimonial-column {
    margin-top: 0;
}

/* About testimonial style on mobile: same block treatment as highlight, but orange */
.about-testimonial-column .testimonial-block,
.about-testimonial-column .testimonial-container {
    padding: 0;
    margin: 0;
    max-width: none;
}

.about-testimonial-column .testimonial-wrapper {
    background-color: var(--color-second);
    margin: 1.25rem -20px 0;
    padding: 0.75rem 20px;
}

.about-testimonial-column .testimonial-copy {
    border-left: 0;
    padding-left: 0;
    margin: 0;
    font-size: 1.125rem;      /* 18px */
    line-height: 1.3125rem;   /* 21px */
    font-weight: 400;
    letter-spacing: 0.025em;
}

.about-testimonial-column .testimonial-copy p,
.about-testimonial-column .testimonial-copy li {
    font-size: 1.125rem;      /* 18px */
    line-height: 1.3125rem;   /* 21px */
    font-weight: 400;
    color: #000000;
    margin: 0 0 2rem 0;
}

.about-testimonial-column .testimonial-copy p:first-child {
    color: #000000;
    margin-bottom: 0.75rem;
}

.about-testimonial-column .testimonial-copy strong,
.about-testimonial-column .testimonial-copy b,
.about-testimonial-column .testimonial-copy h3,
.about-testimonial-column .testimonial-copy h4 {
    font-size: 1.125rem;      /* 18px */
    line-height: 1.3125rem;   /* 21px */
    font-weight: 600;
    color: #000000;
}

.about-testimonial-column .testimonial-copy > *:first-child {
    margin-top: 0;
}

.about-testimonial-column .testimonial-copy p:last-child {
    margin-bottom: 0;
}

/* ===========================
   TESTIMONIAL BLOCK
   =========================== */

.testimonial-block {
    padding: 0;
    background-color: transparent;
}

.testimonial-container {
    max-width: var(--container-mobile);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

/* Mobile: Full width met achtergrondkleur */
.testimonial-wrapper {
    background-color: var(--color-second);
    padding: 2rem 1.5rem;
    margin: 2rem 0;
}

.testimonial-figtree {
    font-size: var(--fs-testimonial);
    line-height: var(--lh-testimonial);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-copy {
    font-size: var(--fs-testimonial);
    line-height: var(--lh-testimonial);
    font-weight: 400;
    margin: 0 0 1rem 0;
    border-left: 3px solid var(--color-black);
    padding-left: 1rem;
}

.testimonial-meta {
    font-size: var(--fs-testimonial);
    line-height: var(--lh-testimonial);
}

.testimonial-name {
    display: block;
    font-size: var(--fs-testimonial);
    line-height: var(--lh-testimonial);
    font-weight: 600;
}

.testimonial-company {
    display: block;
    opacity: 0.7;
}

/* ===========================
   HIGHLIGHT BLOCK
   =========================== */

.highlight-block {
    background-color: var(--color-light-grey);
    padding: 0 0 40px 0;
}

.highlight-block .highlight-inline {
    margin-top: 0;
}

.highlight-block.highlight-color-main {
    background-color: var(--color-light-grey);
}

.highlight-block.highlight-color-second {
    background-color: var(--color-light-grey);
}

.highlight-block.highlight-color-light-grey {
    background-color: var(--color-light-grey);
}

.highlight-block.highlight-color-dark-grey {
    background-color: var(--color-light-grey);
}

.highlight-container {
    max-width: var(--container-mobile);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.highlight-inline {
    margin: 1.25rem -20px 0;
    padding: 0.75rem 20px;
    background-clip: padding-box;
}

.highlight-inline.highlight-color-main {
    background-color: var(--color-light-grey);
}

.highlight-inline.highlight-color-second {
    background-color: var(--color-light-grey);
}

.highlight-inline.highlight-color-light-grey {
    background-color: var(--color-light-grey);
}

.highlight-inline.highlight-color-dark-grey {
    background-color: var(--color-light-grey);
}

.highlight-inline .highlight-heading {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;   /* 18px */
    line-height: 1.5rem; /* 24px */
    font-weight: 600;
    color: var(--color-second);
    text-transform: none;
    letter-spacing: 0.025em; /* tracking 25 */
}

.highlight-inline .highlight-copy,
.highlight-inline .highlight-copy p {
    font-size: 1.125rem;   /* 18px */
    line-height: 1.5rem; /* 24px */
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: 0.025em; /* tracking 25 */
}

/* ===========================
   IMAGE BLOCK
   =========================== */

.image-block {
    width: 100%;
    padding: 0;
    margin: 0;
}

.image-block-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.image-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-black);
}

.image-wrapper picture {
    display: block;
    width: 100%;
}

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

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* ===========================
   SERVICE/BULLET LIST BLOCK
   =========================== */

.service-list-block {
    background-color: #ffffff;
    padding: 2rem 0;
}

/* Keep content rhythm consistent across all richtext blocks */
.intro-copy > *:first-child,
.basic-text-copy > *:first-child,
.service-list-richtext > *:first-child,
.highlight-copy > *:first-child,
.testimonial-copy > *:first-child {
    margin-top: 0;
}

.intro-copy > *:last-child,
.basic-text-copy > *:last-child,
.service-list-richtext > *:last-child,
.highlight-copy > *:last-child,
.testimonial-copy > *:last-child {
    margin-bottom: 0;
}

.service-list-container {
    max-width: var(--container-mobile);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.service-items {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.service-item {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-item::before {
    content: "\2192";
    position: absolute;
    left: 0;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
    background-color: #fae59b;
    padding: 1.5rem 0 1.75rem 0;
    margin-top: 0;
}

.footer-container {
    max-width: var(--container-mobile);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Linkerkolom 20px smaller gemaakt (was 1.2fr 1fr) */
    grid-template-areas:
        "brand brand"
        "contact address"
        "legal legal";
    column-gap: 1.5rem;
    row-gap: 2rem;
    align-items: start;
}

.footer-brand {
    grid-area: brand;
}

.footer-contact {
    grid-area: contact;
}

.footer-address {
    grid-area: address;
}

.footer-legal {
    grid-area: legal;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.footer-legal-link-wrapper {
    padding-top: 0.2rem; /* Kleine correctie voor uitlijning met de tekst links */
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.footer-tagline {
    font-size: 1.125rem; /* Zelfde grootte als de rest van de footer tekst */
    line-height: 1.4rem;
    opacity: 1;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.footer-contact h3,
.footer-address h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
    color: #0000ff;
}

.footer-contact p,
.footer-address p,
.footer-legal-note,
.footer-content a {
    font-size: 1.125rem;
    line-height: 1.4rem;
    margin: 0;
    color: #000000;
    text-decoration: none;
}

.footer-legal-note {
    line-height: 1.3rem;
    display: block;
}

.footer-link-with-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-link-with-arrow::after {
    content: "";
    width: 15px;
    height: 13px;
    background-image: url("svg/pijl.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex: 0 0 15px;
}

/* ===========================
   ANIMATIONS (Scroll Reveal)
   =========================== */

.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Keep content visible even if old cached animation JS runs. */
.reveal-hidden {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Delay voor opeenvolgende blokken op desktop */
@media (min-width: 768px) {
    .reveal-hidden {
        transform: translateY(40px);
    }
}

/* ===========================
   WHATSAPP BUTTON (Mobile Only)
   =========================== */

.wa-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: transform 0.3s ease;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    outline: none;
}

.wa-button:hover {
    transform: scale(1.1);
    opacity: 1;
}

.wa-button svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===========================
   CONTACT PAGE
   =========================== */

.contact-info-block {
    padding: 2rem 0;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item div {
    font-size: 0.875rem;
}

/* ===========================
   404 ERROR PAGE
   =========================== */

.error-404-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 15px;
}

.error-404-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-main);
    color: var(--color-black);
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
}

/* ===========================
   DESKTOP STYLES (768px+)
   =========================== */

@media (min-width: 768px) {
    
    /* Layout Desktop */
    .content-wrapper,
    .page-wrapper,
    .single-wrapper {
        max-width: var(--container-desktop);
    }
    
    /* Header Desktop - stays fixed */
    .site-header {
        height: 120px;
    }

    .site-main {
        padding-top: 120px;
    }

    .header-container {
        align-items: flex-end;
        max-width: var(--container-desktop);
        height: 120px;
        margin: 0 auto;
        padding: 0 15px;
        position: relative;
    }

    .header-logo {
        position: static;
        width: auto;
        height: 100%;
        align-items: flex-end;
        justify-content: flex-start;
        margin-left: 0;
    }

    .header-logo a,
    .header-logo picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .logo-image {
        width: auto;
        height: 100%;
        object-fit: contain;
        object-position: left bottom;
    }

    .desktop-menu a {
        font-size: 1.5rem;
        line-height: 1;
        font-weight: 600;
        color: var(--color-second);
    }
    
    /* Show desktop nav, hide mobile hamburger */
    .desktop-nav {
        display: block;
        position: static;
        margin-left: auto;
        width: auto;
        align-self: flex-end;
        margin-bottom: 0;
    }

    .desktop-menu {
        justify-content: flex-start;
        gap: 36px;
        margin: 0;
        padding: 0;
        list-style: none;
        align-items: flex-end;
    }

    .desktop-menu > li {
        position: relative;
    }

    /* Bridge hover area so submenu doesn't disappear while moving down */
    .desktop-menu > li.menu-item-has-children::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 14px;
    }

    .desktop-menu > li > a {
        display: inline-block;
        padding: 10px 12px 8px;
        position: relative;
        z-index: 10030;
        pointer-events: auto;
        cursor: pointer;
    }

    .desktop-menu > li.menu-item-has-children:hover > a,
    .desktop-menu > li.menu-item-has-children:focus-within > a {
        background-color: var(--color-main);
        color: #000000;
    }

    .desktop-menu > li > a:hover,
    .desktop-menu > li > a:focus {
        color: #000000;
    }

    .desktop-menu .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 320px;
        margin: 0;
        padding: 10px 12px 12px;
        list-style: none;
        background-color: var(--color-main);
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 10020;
        opacity: 0;
        visibility: hidden;
        transform: translateY(4px);
        pointer-events: none;
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }

    .desktop-menu .sub-menu li {
        margin: 0;
        padding: 0;
        line-height: 1;
    }

    .desktop-menu .sub-menu a {
        display: inline-block;
        color: #ffffff;
        font-size: 1.5rem;
        line-height: normal;
        font-weight: 600;
        white-space: nowrap;
    }

    .desktop-menu .sub-menu a:hover,
    .desktop-menu .sub-menu a:focus {
        color: #000000;
    }

    .desktop-menu > li:hover > .sub-menu,
    .desktop-menu > li:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .mobile-only {
        display: none !important;
    }
    
    /* Hide fullscreen nav on desktop */
    .fullscreen-nav {
        display: none !important;
    }
    
    /* Hero Desktop */
    section.hero-block {
        margin-top: 0;
    }

    /* Base desktop top offset */
    .page-template-page-home-php .site-main,
    .page-template-page-diensten-php .site-main,
    .page-template-page-about-php .site-main,
    .page-template-page-contact-php .site-main,
    .page-template-home .site-main,
    .page-template-diensten .site-main,
    .page-template-about .site-main,
    .page-template-contact .site-main {
        padding-top: 120px;
    }

    /* Keep browser-specific override aligned with new 120px header. */
    .browser-chrome.page-template-page-home-php .site-main,
    .browser-chrome.page-template-page-diensten-php .site-main,
    .browser-chrome.page-template-page-about-php .site-main,
    .browser-chrome.page-template-page-contact-php .site-main,
    .browser-chrome.page-template-home .site-main,
    .browser-chrome.page-template-diensten .site-main,
    .browser-chrome.page-template-about .site-main,
    .browser-chrome.page-template-contact .site-main {
        padding-top: 120px;
    }

    .hero-payoff {
        max-width: 800px;
        height: 50px;
    }

    .hero-container {
        max-width: 800px;
        width: 100%;
        height: 500px;
    }

    .hero-image-wrapper img {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }

    .hero-svg-mobile {
        display: none;
    }

    .hero-svg-desktop {
        display: block;
    }
    
    /* Intro Desktop */
    .intro-container {
        max-width: var(--container-desktop);
    }

    .intro-heading {
        font-size: var(--fs-h1);
        line-height: var(--lh-h1);
        font-weight: 600;
        color: var(--color-second);
        text-transform: none;
    }

    .intro-copy,
    .intro-copy p {
        font-size: var(--fs-base);
        line-height: var(--lh-base);
        font-weight: 300;
        color: var(--color-black);
    }

    .basic-text-container {
        max-width: var(--container-desktop);
    }

    .basic-text-heading {
        font-size: var(--fs-h2);
        line-height: var(--lh-h2);
        font-weight: 600;
        color: var(--color-second);
        text-transform: none;
    }

    .basic-text-copy,
    .basic-text-copy p,
    .basic-text-copy li,
    .basic-text-copy a {
        font-size: var(--fs-copy);
        line-height: var(--lh-copy);
        font-weight: 400;
        color: var(--color-black);
    }

    .about-content-container {
        max-width: var(--container-desktop);
        display: grid;
        grid-template-columns: 560px 210px;
        column-gap: 30px;
        align-items: start;
    }

    .about-testimonial-column {
        margin-top: 0;
    }

    .about-main-content {
        width: 560px;
    }

    .about-testimonial-column .testimonial-container {
        max-width: none;
        padding: 0;
    }

    .about-testimonial-column .testimonial-wrapper {
        background-color: #ffffff;
        width: 210px;
        margin: 0;
        padding: 2rem 1.5rem;
    }

    /* Desktop: make yellow highlight block 40px wider (20px each side). */
    .highlight-inline {
        margin: 1.25rem -20px 0;
        padding: 0.75rem 20px;
    }

    /* Highlight desktop typography matches Intro 2 */
    .highlight-inline .highlight-heading {
        font-size: var(--fs-h2);
        line-height: var(--lh-h2);
        font-weight: 600;
        color: var(--color-second);
        letter-spacing: 0.025em;
        text-transform: none;
    }

    .highlight-inline .highlight-copy,
    .highlight-inline .highlight-copy p {
        font-size: var(--fs-copy);
        line-height: var(--lh-copy);
        font-weight: 400;
        color: var(--color-black);
        letter-spacing: 0.025em;
    }
    
    /* Testimonial Desktop - Rechter Kolom (270px) */
    .testimonial-container {
        max-width: var(--container-desktop);
        padding: 0 var(--page-gutter);
    }
    
    .testimonial-wrapper {
        /* Desktop: Dit kan positioneerd worden als floating sidebar */
        /* Voor nu als standalone block, kan later aangepast worden voor layout met content */
        max-width: 270px;
        margin-left: auto;
        padding: 2rem 1.5rem;
    }
    
    /* Highlight Desktop */
    .highlight-block {
        padding: 0 0 40px 0;
    }
    
    .highlight-container {
        max-width: var(--container-desktop);
    }
    
    /* Service List Desktop */
    .service-list-container {
        max-width: var(--container-desktop);
    }
    
    /* Footer Desktop */
    .site-footer {
        background-color: #fae59b;
    }

    .footer-container {
        max-width: var(--container-desktop);
    }
    
    .site-footer .footer-content {
        display: grid;
        /* Vaste pixel-waardes: brand breed, contact compact, address 3x zo breed als contact */
        grid-template-columns: 240px 140px 390px;
        grid-template-areas:
            "brand contact address"
            "legal legal legal";
        column-gap: 15px; /* Compacte gap: contact + address dichter bij elkaar */
        row-gap: 2rem;
        align-items: start;
    }

    .site-footer .footer-content > * {
        min-width: 0;
    }

    /* Desktop: align Contact/Adres headers to the same height zone */
    .site-footer .footer-contact,
    .site-footer .footer-address {
        margin-top: 0;
        padding-top: 0;
    }

    .footer-logo {
        font-size: 2rem;
        line-height: 1;
        min-height: 2.5rem;
        display: flex;
        align-items: flex-end;
        margin-bottom: 0.5rem;
    }

    .site-footer .footer-contact h3,
    .site-footer .footer-address h3 {
        font-size: 1.125rem;
        line-height: 1;
        min-height: 2.5rem;
        display: flex;
        align-items: flex-end;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .footer-tagline,
    .footer-contact p,
    .footer-address p,
    .footer-content a {
        font-size: 1rem;
        line-height: 1.5rem;
        margin: 0;
    }

    .footer-legal {
        grid-area: legal;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 1rem;
    }

    .footer-legal-note {
        white-space: nowrap;
        font-size: 1rem;
    }

    .footer-legal-link-wrapper {
        padding-top: 0;
    }
    
    /* Contact page desktop grid */
    .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    /* Hide WhatsApp Button on Desktop */
    .wa-button {
        display: none;
    }

}