@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --background: #f8f5ee;
  --foreground: #2b2825;
  --ink: #23211f;
  --ink-foreground: #f5f1e9;
  --muted: #eee9df;
  --muted-foreground: #746d65;
  --sand: #ded2bf;
  --sand-soft: #ece4d7;
  --copper: #b76f42;
  --border: #ddd5c8;
  --white: #fffdfa;
  --shadow-lift: 0 20px 60px rgba(40, 32, 25, .16);
  --font-display: 'Archivo', Arial, sans-serif;
  --font-sans: 'Manrope', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
main { min-height: 60vh; }

.container { width: min(100%, 1400px); margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.section { padding-top: 6rem; padding-bottom: 6rem; }
.bordered { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bg-muted { background: rgba(238, 233, 223, .68); }
.bg-sand-soft { background: rgba(236, 228, 215, .74); }
.text-copper { color: var(--copper); }
.muted { color: var(--muted-foreground); }
.foreground { color: var(--foreground); }
.opacity-80 { opacity: .8; }
.opacity-75 { opacity: .75; }
.narrow { max-width: 42rem; }
.center { text-align: center; }
.align-center { align-items: center; }
.top-gap { margin-top: 1.5rem; }
.top-gap-lg { margin-top: 2.25rem; }
.top-gap-xl { margin-top: 3.5rem; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.025em; line-height: .96; text-wrap: balance; }
.wordmark { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
.eyebrow { margin: 0; font-family: var(--font-display); font-size: .6875rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.display-xl { margin: 1.5rem 0 0; font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 800; letter-spacing: -.03em; line-height: .92; }
.display-lg { margin: 0; font-size: clamp(2rem, 4.6vw, 3.5rem); font-weight: 800; letter-spacing: -.025em; line-height: .95; }
.display-sm { margin: 0; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1; }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.6; }
.small { font-size: .875rem; line-height: 1.55; }
.statement { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
.rule-copper { width: 3rem; height: 2px; margin-top: 2rem; background: var(--copper); }
.stack > * + * { margin-top: 1.5rem; }
.plain-list { margin: 0; padding: 0; list-style: none; }
.plain-list li { margin: .2rem 0; }

.site-header { z-index: 40; width: 100%; }
.site-header-over { position: absolute; inset: 0 0 auto; color: var(--ink-foreground); }
.site-header-light { position: sticky; top: 0; border-bottom: 1px solid rgba(221, 213, 200, .9); background: rgba(248, 245, 238, .92); color: var(--foreground); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.header-inner { height: 5rem; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1rem; line-height: 1; white-space: nowrap; }
.logo span, .footer-logo span { color: var(--copper); }
.desktop-nav { display: none; align-items: center; gap: 2.25rem; }
.desktop-nav a { opacity: .75; transition: opacity .2s ease, color .2s ease; }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a.active { opacity: 1; color: var(--copper); }
.desktop-actions { display: none; align-items: center; gap: .75rem; }
.language-switch { display: flex; align-items: center; gap: .35rem; font-family: var(--font-display); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.language-switch a { opacity: .55; transition: opacity .2s, color .2s; }
.language-switch a:hover, .language-switch a.active { opacity: 1; color: var(--copper); }
.menu-button { width: 2.7rem; height: 2.7rem; padding: .5rem; display: flex; flex-direction: column; justify-content: center; gap: 5px; border: 0; background: transparent; color: currentColor; }
.menu-button span { width: 100%; height: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { padding: 1rem 1.25rem 1.5rem; border-top: 1px solid var(--border); background: var(--background); color: var(--foreground); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.35rem; }
.mobile-actions { margin-top: 1.5rem; display: grid; gap: .65rem; }
.mobile-language { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
body.menu-open { overflow: hidden; }

.btn { min-height: 2.9rem; display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.15rem; border: 1px solid transparent; border-radius: 2px; font-family: var(--font-display); font-size: .7rem; font-weight: 800; letter-spacing: .1em; line-height: 1; text-transform: uppercase; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.btn:hover { transform: translateY(-1px); }
.btn-lg { min-height: 3.4rem; padding: 1rem 1.4rem; }
.btn-solid { background: var(--ink); color: var(--ink-foreground); border-color: var(--ink); }
.btn-solid:hover { background: #34302c; }
.btn-light { background: var(--ink-foreground); color: var(--ink); border-color: var(--ink-foreground); }
.btn-light:hover { background: #fff; }
.btn-outline { background: transparent; color: var(--ink-foreground); border-color: rgba(245, 241, 233, .55); }
.btn-outline:hover { border-color: var(--ink-foreground); }
.btn-outline-dark { background: transparent; color: var(--foreground); border-color: var(--border); }
.btn-outline-dark:hover { border-color: var(--copper); color: var(--copper); }
.site-header-light .header-whatsapp { color: var(--foreground); border-color: var(--border); }
.site-header-light .header-whatsapp:hover { border-color: var(--copper); color: var(--copper); }
.button-row { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.center-buttons { justify-content: center; }

.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--ink-foreground); }
.hero > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(35,33,31,1), rgba(35,33,31,.6), rgba(35,33,31,.4)); }
.home-hero { min-height: 92vh; }
.hero-content { min-height: 92vh; padding-top: 10rem; padding-bottom: 4rem; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-content .display-xl { max-width: 48rem; }
.hero-lede { max-width: 36rem; margin: 1.5rem 0 0; opacity: .82; }
.hero-audience { margin-top: 2.5rem; opacity: .6; }
.vastgoed-hero-content { padding-top: 10rem; padding-bottom: 6rem; }
.vastgoed-hero-content .display-xl { max-width: 42rem; }
.vastgoed-overlay { background: linear-gradient(to top, rgba(35,33,31,1), rgba(35,33,31,.7), rgba(35,33,31,.5)); }

.two-col { display: grid; gap: 3.5rem; }
.section-problem .display-lg { max-width: 30rem; }
.card-grid { margin-top: 3.5rem; display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--border); background: var(--border); }
.service-card, .person-card { background: var(--background); }
.service-card { position: relative; min-height: 11rem; padding: 2rem; transition: background .2s; }
.service-card:hover { background: var(--sand-soft); }
.service-card .wordmark { font-size: 1.05rem; }
.service-card .small { margin: .75rem 0 0; }
.arrow { position: absolute; left: 2rem; bottom: 1.5rem; font-size: 1.5rem; color: var(--copper); opacity: 0; transform: translateX(-5px); transition: opacity .2s, transform .2s; }
.service-card:hover .arrow { opacity: 1; transform: translateX(0); }
.below-copy { margin: 2.4rem 0 0; }
.copper-link { color: var(--copper); text-decoration: underline; text-underline-offset: 4px; }
.ink-section { background: var(--ink); color: var(--ink-foreground); }
.image-pair { display: grid; gap: 1px; background: rgba(255,255,255,.13); }
.image-pair img { width: 100%; height: 18rem; object-fit: cover; }
.steps-grid { margin-top: 3.5rem; display: grid; gap: 2.5rem; }
.step-card { padding-top: 1.5rem; border-top: 1px solid var(--border); }
.step-number { margin: 0 0 1rem; font-family: var(--font-display); font-weight: 800; font-size: 2.25rem; color: var(--copper); }
.step-card .small { margin: .75rem 0 0; }
.feature-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-lift); }
.people-grid { margin-top: 3.5rem; }
.person-card { padding: 2.5rem 2rem; }
.person-card .small { margin: .5rem 0 0; }
.cta-section { padding: 7rem 0; }
.compact-cta { padding: 6rem 0; }

.page-intro { padding-top: 5rem; padding-bottom: 7rem; }
.intro-title { max-width: 42rem; margin-top: 1.5rem; }
.wide-title { max-width: 48rem; }
.intro-copy { max-width: 38rem; margin: 1.5rem 0 0; }
.details-grid { margin-top: 4rem; display: grid; gap: 1px; border: 1px solid var(--border); background: var(--border); }
.detail-card { background: var(--background); padding: 2rem; }
.detail-title { font-size: 1.05rem; }
.detail-card .small { margin: .5rem 0 0; }
.detail-card .rule-copper { margin-top: 1.5rem; }
.detail-list { margin: 1.5rem 0 0; padding: 0; list-style: none; font-size: .875rem; line-height: 1.7; }
.panel { padding: 2.5rem; border: 1px solid var(--border); background: rgba(238, 233, 223, .7); }
.top-block { margin-top: 4rem; }
.panel-copy { max-width: 34rem; margin: 1rem 0 0; line-height: 1.65; }
.work-grid { display: grid; gap: 1px; border: 1px solid var(--border); background: var(--border); }
.work-card { padding: 2rem; background: var(--background); }
.work-card .small { margin: .5rem 0 0; }
.content-copy { max-width: 30rem; margin-top: 2rem; line-height: 1.7; }
.audience-label { margin-top: 2.5rem; }
.doelgroep-list { margin-top: 1rem; }
.doelgroep-list li { font-size: .875rem; line-height: 1.65; }
.about-grid { margin-top: 3.5rem; }
.values-section { padding-top: 5rem; padding-bottom: 5rem; }
.values-grid { display: grid; gap: 1px; border: 1px solid var(--border); background: var(--border); }
.value-card { padding: 2.5rem; background: var(--background); }
.value-card .rule-copper { margin-top: 1.25rem; }
.value-copy { margin: 1.25rem 0 0; }
.tag-row { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.tag { padding: .8rem 1.2rem; border: 1px solid var(--border); background: rgba(236,228,215,.7); font-size: .75rem; }

.contact-grid { margin-top: 3.5rem; display: grid; gap: 1px; border: 1px solid var(--border); background: var(--border); }
.contact-card { padding: 2.5rem; background: var(--background); transition: background .2s; }
.contact-card:hover { background: var(--sand-soft); }
.icon { width: 1.55rem; height: 1.55rem; fill: none; stroke: var(--copper); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-title { margin-top: 1.5rem; }
.contact-card .small { margin: .5rem 0 0; }
.contact-panel { margin-top: 4rem; }
.contact-form-wrap { max-width: 48rem; margin-top: 4rem; padding-top: 4rem; border-top: 1px solid var(--border); }
.contact-area { margin-top: 2.5rem; }

.site-form, .signup-form { margin-top: 2rem; }
.site-form label, .field-label { display: block; font-size: .875rem; line-height: 1.5; }
.site-form label + label, .field-label + .field-label { margin-top: 1.5rem; }
.form-grid { display: grid; gap: 1.5rem; }
input, textarea { width: 100%; margin-top: .7rem; padding: .9rem 1rem; border: 1px solid var(--border); border-radius: 0; outline: none; background: var(--background); color: var(--foreground); transition: border-color .2s; }
textarea { resize: vertical; min-height: 8rem; }
input:focus, textarea:focus { border-color: var(--copper); }
.form-message { margin: 1.5rem 0; padding: 1rem 1.2rem; border: 1px solid var(--border); font-size: .9rem; line-height: 1.5; }
.success-message { background: rgba(226, 237, 219, .65); }
.error-message { background: rgba(246, 225, 218, .65); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-container { max-width: 48rem; }
.signup-form { margin-top: 3.5rem; }
.signup-form fieldset { margin: 0; padding: 0 0 3.5rem; border: 0; }
.signup-form fieldset + fieldset { padding-top: 0; }
.signup-form legend { margin-bottom: 1.25rem; }
.chip-grid { display: grid; gap: .7rem; }
.chip { position: relative; display: block; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span { min-height: 3.25rem; display: flex; align-items: center; justify-content: center; padding: .8rem 1rem; border: 1px solid var(--border); background: var(--background); font-size: .72rem; text-align: center; transition: all .2s; }
.chip input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--ink-foreground); }
.chip:hover span { border-color: var(--copper); color: var(--copper); }
.chip input:checked + span { color: var(--ink-foreground); }
.form-help { margin: 1rem 0 0; color: var(--muted-foreground); font-size: .75rem; line-height: 1.5; }
.submit-row { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.submit-row .form-help { margin: 0; }
.signup-error { margin-top: 2rem; }
.success-panel { margin-top: 3.5rem; padding: 2.5rem; border: 1px solid var(--border); background: rgba(238, 233, 223, .7); }
.success-panel .display-sm { margin-top: 1.5rem; }
.success-panel .muted { margin: 1rem 0 0; line-height: 1.6; }
.success-icon { width: 2rem; height: 2rem; fill: none; stroke: var(--copper); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.site-footer { background: var(--ink); color: var(--ink-foreground); }
.footer-inner { padding-top: 4rem; padding-bottom: 4rem; }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-logo { font-size: 1.05rem; }
.footer-muted { margin: .75rem 0 0; font-size: .875rem; opacity: .7; }
.site-footer .rule-copper { margin-top: 1.5rem; }
.footer-eyebrow { margin-top: 1.5rem; opacity: .6; }
.footer-links { display: flex; flex-direction: column; gap: .75rem; font-size: .875rem; }
.footer-links a { opacity: .7; transition: opacity .2s; }
.footer-links a:hover { opacity: 1; }
.footer-links span { opacity: .5; }
.copyright { margin: 3.5rem 0 0; font-size: .75rem; opacity: .4; }
.whatsapp-fab { position: fixed; z-index: 50; right: 1.25rem; bottom: 1.25rem; display: inline-flex; align-items: center; gap: .6rem; padding: .95rem 1.2rem; border-radius: 999px; background: var(--ink); color: var(--ink-foreground); box-shadow: var(--shadow-lift); transition: transform .2s; }
.whatsapp-fab:hover { transform: translateY(-2px); }
.whatsapp-fab svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (min-width: 640px) {
  .services-grid, .people-grid, .steps-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .image-pair { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .image-pair img { height: 24rem; }
  .form-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .three-col { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .two-chip-col { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (min-width: 768px) {
  .container { padding-left: 2.5rem; padding-right: 2.5rem; }
  .section { padding-top: 8rem; padding-bottom: 8rem; }
  .two-col { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .details-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .values-grid, .contact-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .page-intro { padding-top: 7rem; }
  .vastgoed-hero-content { padding-bottom: 8rem; }
}

@media (min-width: 1080px) {
  .desktop-nav, .desktop-actions { display: flex; }
  .desktop-nav { gap: 1.5rem; }
  .menu-button, .mobile-menu { display: none !important; }
  body.menu-open { overflow: auto; }
}

@media (min-width: 768px) and (max-width: 1079px) {
  .site-header-over .mobile-menu { box-shadow: 0 15px 30px rgba(0,0,0,.15); }
}

@media (min-width: 1024px) {
  .services-grid, .people-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .steps-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

@media (min-width: 1280px) {
  .container { padding-left: 4rem; padding-right: 4rem; }
}

@media (max-width: 767px) {
  .whatsapp-fab span { display: none; }
  .whatsapp-fab { width: 3.5rem; height: 3.5rem; justify-content: center; padding: 0; }
  .site-header-over .mobile-menu { box-shadow: 0 15px 30px rgba(0,0,0,.15); }
  .cta-section { padding: 6rem 0; }
}
