/* ==========================================================================
   Tuinen Gheysens — Component Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   6. Header — Fixed with glassmorphism on scroll
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: hsl(var(--card));
}

/* Transparent variant (homepage only, before scroll) */
.site-header--transparent {
    background: transparent;
}

.site-header--transparent .site-logo-text,
.site-header--transparent .nav-menu li a,
.site-header--transparent .site-header__phone {
    color: #fff;
}

.site-header--transparent .hamburger__line {
    background: #fff;
}

.site-header--transparent .site-logo-icon {
    background: hsl(var(--accent));
    color: #fff;
}

.site-header--transparent .site-logo__img {
    filter: brightness(0) invert(1);
}

.site-header--transparent .nav-menu li a:hover,
.site-header--transparent .nav-menu li.current-menu-item a {
    color: #fff;
}

.site-header--transparent .nav-menu li a::after {
    background: #fff;
}

/* Scrolled / glassmorphism */
.site-header--scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.site-header--scrolled .site-logo-text,
.site-header--scrolled .nav-menu li a,
.site-header--scrolled .site-header__phone {
    color: hsl(var(--foreground));
}

.site-header--scrolled .hamburger__line {
    background: hsl(var(--primary));
}

.site-header--scrolled .site-logo-icon {
    background: hsl(var(--primary));
    color: #fff;
}

.site-header--scrolled .site-logo__img {
    filter: none;
}

.site-header--scrolled .nav-menu li a:hover,
.site-header--scrolled .nav-menu li.current-menu-item a {
    color: hsl(var(--primary));
}

.site-header--scrolled .nav-menu li a::after {
    background: hsl(var(--accent));
}

/* Inner pages: body padding for fixed header */
body {
    padding-top: 80px;
}

body.home-page {
    padding-top: 0;
}

/* WP Admin Bar offsets */
.admin-bar .site-header {
    top: 32px;
}

.admin-bar .mobile-menu {
    top: 112px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .admin-bar .mobile-menu {
        top: 110px;
    }
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

.site-header__logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    transition: color 0.3s ease;
}

.site-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: hsl(var(--primary));
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.site-header__nav {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu li a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: hsl(var(--primary));
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: hsl(var(--accent));
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
    width: 100%;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header__phone {
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: hsl(var(--foreground));
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.site-header__phone:hover {
    color: hsl(var(--primary));
}

.site-header__cta {
    display: none;
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger__line {
    width: 100%;
    height: 2px;
    background: hsl(var(--primary));
    border-radius: 2px;
    transition: all 0.3s ease;
}

body.nav-open .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

body.nav-open .hamburger__line:nth-child(2) {
    opacity: 0;
}

body.nav-open .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsl(var(--primary));
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

body.nav-open .mobile-menu {
    opacity: 1;
    visibility: visible;
}

/* Lock scroll and unify header with menu when nav is open */
body.nav-open {
    overflow: hidden;
}

body.nav-open .site-header {
    background: hsl(var(--primary));
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
}

body.nav-open .site-header .hamburger__line {
    background: #fff;
}

body.nav-open .site-header .site-logo-text {
    color: #fff;
}

body.nav-open .site-header .site-logo-icon {
    background: hsl(var(--accent));
    color: #fff;
}

body.nav-open .site-header .site-logo__img {
    filter: brightness(0) invert(1);
}

body.nav-open .site-header .site-header__phone {
    color: rgba(255,255,255,0.8);
}

.mobile-menu__inner {
    text-align: center;
    padding: 24px;
}

.mobile-nav-menu li {
    margin-bottom: 24px;
}

.mobile-nav-menu li a {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s ease;
}

.mobile-nav-menu li a:hover {
    color: hsl(var(--accent));
}

.mobile-menu__phone,
.mobile-menu__cta {
    display: inline-flex;
    margin-top: 16px;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    z-index: 90;
    transition: transform 0.3s ease;
    animation: pulse-shadow 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   7. Hero Section — img + overlay structure
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.5) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: hsl(var(--accent));
    border-radius: 50%;
    flex-shrink: 0;
}

.hero__heading {
    color: #fff;
    margin-bottom: 20px;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero__heading-line1 {
    display: block;
    font-weight: 400;
}

.hero__heading-line2 {
    display: block;
    font-style: italic;
    color: hsl(var(--accent));
}

.hero__subtext {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.625;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.scroll-indicator.is-hidden {
    opacity: 0;
}

.scroll-indicator__mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator__wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollPulse 1.5s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   8. Page Header (inner pages) — light background
   -------------------------------------------------------------------------- */
.page-header {
    padding: 10rem 0 3.5rem;
    text-align: center;
    background-color: hsl(var(--secondary) / 0.3);
}

.page-header h1 {
    color: hsl(var(--foreground));
    margin-bottom: 16px;
}

.page-header .eyebrow {
    color: hsl(var(--accent));
}

.page-header__subtext {
    max-width: 600px;
    margin: 0 auto;
    color: hsl(var(--muted-foreground));
    font-size: 1.0625rem;
}

/* --------------------------------------------------------------------------
   9. Service Cards
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card--linked {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26,60,52,0.1);
    border-color: hsl(var(--accent));
}

.service-card:hover .service-card__link {
    color: hsl(var(--accent));
    gap: 10px;
}

.service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    background: hsl(var(--secondary));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: hsl(var(--primary));
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
}

.service-card__title {
    margin-bottom: 12px;
    color: hsl(var(--foreground));
}

.service-card__description {
    color: hsl(var(--muted-foreground));
    font-size: 0.9375rem;
    margin-bottom: 20px;
    line-height: 1.625;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: hsl(var(--primary));
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

/* --------------------------------------------------------------------------
   10. Portfolio Cards
   -------------------------------------------------------------------------- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.portfolio-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.portfolio-card__link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-out;
}

.portfolio-card:hover .portfolio-card__image {
    transform: scale(1.08);
}

.portfolio-card__overlay {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(26,60,52,0.9) 0%, rgba(26,60,52,0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-card__overlay,
.portfolio-card:focus-within .portfolio-card__overlay {
    opacity: 1;
}

/* Always show on touch devices */
@media (hover: none) {
    .portfolio-card__overlay {
        opacity: 1;
    }
}

.portfolio-card__category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    width: fit-content;
}

.portfolio-card__title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.portfolio-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.8);
    font-size: 0.8125rem;
    margin-bottom: 8px;
}

.portfolio-card__excerpt {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Filter pills */
.filter-nav {
    margin-bottom: 32px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-pill {
    padding: 8px 20px;
    border-radius: 9999px;
    border: 1.5px solid hsl(var(--border));
    background: hsl(var(--card));
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.filter-pill:hover {
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
}

.filter-pill--active,
.filter-pill[aria-pressed="true"] {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-color: hsl(var(--primary));
}

/* Portfolio card filter animation */
.portfolio-card.is-hidden {
    display: none;
}

.portfolio-card.is-appearing {
    animation: cardAppear 0.3s ease forwards;
}

@keyframes cardAppear {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* --------------------------------------------------------------------------
   11. Icon Features & Stats
   -------------------------------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.icon-feature {
    text-align: center;
    transition: transform 0.3s ease;
}

.icon-feature:hover {
    transform: scale(1.1);
}

.icon-feature__icon {
    width: 4rem;
    height: 4rem;
    background: hsl(var(--secondary));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: hsl(var(--primary));
}

.icon-feature__icon svg {
    width: 28px;
    height: 28px;
}

.icon-feature__title {
    margin-bottom: 8px;
}

.icon-feature__description {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat__number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: hsl(var(--foreground));
}

.stat__suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: hsl(var(--accent));
    font-weight: 700;
}

.stat__label {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   12. CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
    background: hsl(var(--primary));
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

/* SVG dot pattern overlay */
.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1.5' fill='white'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}

.cta-banner__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-banner__label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: hsl(var(--accent));
    margin-bottom: 12px;
}

.cta-banner__heading {
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner__subtext {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    font-size: 1.0625rem;
}

.cta-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* --------------------------------------------------------------------------
   14. FAQ Section
   -------------------------------------------------------------------------- */
.faq-section__heading {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid hsl(var(--border));
}

.faq-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    gap: 16px;
}

.faq-item__question {
    font-size: 1.0625rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    margin-bottom: 0;
}

.faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: hsl(var(--muted-foreground));
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item__answer[aria-hidden="false"] {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-item__answer p {
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

/* --------------------------------------------------------------------------
   15. Service Blocks (Diensten page)
   -------------------------------------------------------------------------- */
.service-block {
    padding: var(--section-padding) 0;
}

.service-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-block--image_right .service-block__grid {
    direction: rtl;
}

.service-block--image_right .service-block__grid > * {
    direction: ltr;
}

.service-block__image figure {
    position: relative;
}

.service-block__img {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
}

.service-block__icon-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    background: hsl(var(--card));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    color: hsl(var(--primary));
}

.service-block__icon-badge svg {
    width: 24px;
    height: 24px;
}

.service-block__title {
    color: hsl(var(--foreground));
    margin-bottom: 16px;
}

.service-block__desc {
    margin-bottom: 24px;
}

.service-block__desc p {
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

.service-block__bullets {
    margin-bottom: 32px;
}

.service-block__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: hsl(var(--muted-foreground));
    font-size: 0.9375rem;
}

.service-block__bullets li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: hsl(var(--accent));
}

/* --------------------------------------------------------------------------
   16. Story / About Section
   -------------------------------------------------------------------------- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-figure {
    position: relative;
}

.story-figure__img {
    border-radius: var(--radius);
    width: 100%;
}

.story-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: hsl(var(--primary));
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
}

.story-badge__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--accent));
    line-height: 1;
}

.story-badge__label {
    font-size: 0.8125rem;
    opacity: 0.8;
}

.story-heading {
    font-family: var(--font-display);
    color: hsl(var(--accent));
    font-style: italic;
    margin-bottom: 20px;
}

.story-text p {
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

/* --------------------------------------------------------------------------
   17. Contact Page
   -------------------------------------------------------------------------- */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-method {
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    border: 1px solid hsl(var(--border));
}

.contact-method__icon {
    width: 56px;
    height: 56px;
    background: hsl(var(--secondary));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: hsl(var(--primary));
}

.contact-method__icon svg {
    width: 24px;
    height: 24px;
}

.contact-method--email .contact-method__icon {
    background: #e8eaf6;
    color: #3949ab;
}

.contact-method--whatsapp .contact-method__icon {
    background: #e8f5e9;
    color: #25D366;
}

.contact-method__title {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.contact-method__subtitle {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.contact-method__value {
    font-weight: 600;
    color: hsl(var(--foreground));
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-map {
    margin-bottom: 24px;
}

.contact-info-block {
    margin-top: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: hsl(var(--muted-foreground));
}

.contact-info-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: hsl(var(--accent));
}

.city-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 32px;
}

.city-badge {
    display: inline-block;
    padding: 6px 16px;
    background: hsl(var(--secondary));
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: hsl(var(--primary));
}

.contact-cta-card {
    background: hsl(var(--primary));
    color: #fff;
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
}

.contact-cta-card h3 {
    color: #fff;
    margin-bottom: 8px;
}

.contact-cta-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.contact-cta-card .btn {
    margin-top: 8px;
}

/* --------------------------------------------------------------------------
   19. Single Realisatie
   -------------------------------------------------------------------------- */
.project-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
}

.project-hero--parallax .project-hero__img {
    height: 140%;
    will-change: transform;
}

.project-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.project-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: hsl(var(--muted-foreground));
    max-width: 720px;
    margin-bottom: 32px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid hsl(var(--border));
    margin-bottom: 32px;
}

.project-meta__item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: hsl(var(--muted-foreground));
    font-size: 0.9375rem;
}

.project-meta__badge {
    display: inline-block;
    padding: 4px 16px;
    background: hsl(var(--secondary));
    color: hsl(var(--primary));
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.project-description {
    margin-bottom: 48px;
}

.content-area p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.content-area h2 {
    margin: 2rem 0 1rem;
}

.content-area h3 {
    margin: 1.5rem 0 0.75rem;
}

/* Legal pages (privacy, terms) */
.legal-content h2 {
    font-size: 1.375rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid hsl(var(--border));
}

.legal-content h3 {
    font-size: 1.125rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.4rem;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.legal-content th,
.legal-content td {
    padding: 10px 14px;
    border: 1px solid hsl(var(--border));
    text-align: left;
}

.legal-content th {
    background: hsl(var(--card));
    font-weight: 600;
}

.legal-content hr {
    border: none;
    border-top: 1px solid hsl(var(--border));
    margin: 2.5rem 0;
}

.legal-content strong {
    color: hsl(var(--foreground));
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.project-gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
}

.project-gallery__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-gallery__item:hover .project-gallery__img {
    transform: scale(1.05);
}

/* Breadcrumb */
.project-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid hsl(var(--border));
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.breadcrumb li::after {
    content: '>';
    margin-left: 8px;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: hsl(var(--primary));
}

.breadcrumb a:hover {
    color: hsl(var(--primary) / 0.8);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: hsl(var(--primary));
    font-weight: 600;
    font-size: 0.9375rem;
}

.back-link:hover {
    color: hsl(var(--primary) / 0.8);
}

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: hsl(var(--primary));
    color: #fff;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo__img {
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    margin-bottom: 20px;
    line-height: 1.625;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social__link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s ease;
}

.footer-social__link:hover {
    background: rgba(255,255,255,0.2);
}

.footer-col h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: #fff;
}

.footer-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.footer-areas li {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9375rem;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: hsl(var(--accent));
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
    color: #fff;
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 48px;
    padding: 20px 0;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

.footer-bottom__links {
    display: flex;
    gap: 24px;
}

.footer-bottom__links a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer-bottom__links a:hover {
    color: rgba(255,255,255,0.8);
}

.footer-bottom__vat {
    margin-left: 4px;
}

.footer-bottom__vat::before {
    content: '|';
    margin-right: 4px;
}

/* --------------------------------------------------------------------------
   21. Floating CTA (Mobile)
   -------------------------------------------------------------------------- */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: hsl(var(--primary));
    padding: 12px 16px;
    gap: 12px;
}

.floating-cta__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #fff;
    text-align: center;
}

.floating-cta__btn--call {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.floating-cta__btn--cta {
    background: hsl(var(--accent));
    color: hsl(var(--primary));
}

/* --------------------------------------------------------------------------
   23. Posts / Blog
   -------------------------------------------------------------------------- */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.post-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid hsl(var(--border));
}

.post-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-card__content {
    padding: 24px;
}

.post-card__title {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.post-card__title a {
    color: hsl(var(--foreground));
}

.post-card__title a:hover {
    color: hsl(var(--primary));
}

.post-card__meta {
    color: hsl(var(--muted-foreground));
    font-size: 0.8125rem;
    margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.lightbox--open {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 16px 48px;
}

.lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    user-select: none;
}

.lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s, background 0.2s;
}

.lightbox__nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev {
    left: 16px;
}

.lightbox__nav--next {
    right: 16px;
}

.lightbox__counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
    .lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .lightbox__nav--prev {
        left: 8px;
    }

    .lightbox__nav--next {
        right: 8px;
    }

    .lightbox__content {
        padding: 48px 8px 40px;
    }
}
