*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --white: #ffffff; --off: #f5f3ef; --light: #e8e4dc;
  --mid: #9a9488; --dark: #2c2a26; --black: #1a1814;
  --accent: #b8860b; --accent2: #d4a520; --steel: #4a5568;
  --nav-h: 72px; --r: 4px;
}
body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--dark); font-size: 16px; line-height: 1.7; }
a { color: inherit; }

nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--light); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; z-index: 1000; transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--black); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--steel); text-decoration: none; padding: 8px 16px; border-radius: 100px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); background: var(--off); }
.nav-links .cta-nav { background: var(--accent); color: var(--white) !important; padding: 8px 20px; }
.nav-links .cta-nav:hover, .nav-links .cta-nav.active { background: var(--accent2); color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--light); padding: 20px 24px; flex-direction: column; gap: 4px; z-index: 999; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--dark); text-decoration: none; padding: 12px 16px; border-radius: var(--r); display: block; }
.mobile-menu a:hover { background: var(--off); }
.mobile-menu.open { display: flex; }
.page { padding-top: var(--nav-h); }

/* HERO */
.hero { background: linear-gradient(160deg, var(--black) 0%, #2d2a22 55%, #3a3420 100%); min-height: calc(100vh - var(--nav-h)); display: flex; flex-direction: column; justify-content: center; padding: 80px 80px 140px; position: relative; overflow: hidden; }
.hero-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(184,134,11,0.04) 40px, rgba(184,134,11,0.04) 41px); pointer-events: none; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--accent); flex-shrink: 0; }
.hero-eyebrow span { font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--accent2); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(48px, 7vw, 96px); line-height: 1.05; color: var(--white); max-width: 800px; margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--accent2); }
.hero-desc { font-size: clamp(15px, 1.5vw, 18px); color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.8; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: var(--white); font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 16px 36px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; border-radius: var(--r); }
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; padding: 16px 36px; border: 1px solid rgba(255,255,255,0.2); text-decoration: none; display: inline-block; transition: all 0.2s; border-radius: var(--r); }
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero-stats-bar { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.06); backdrop-filter: blur(4px); border-top: 1px solid rgba(255,255,255,0.08); display: flex; padding: 28px 80px; gap: 64px; flex-wrap: wrap; }
.hero-stat-item { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-item .num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--accent2); line-height: 1; }
.hero-stat-item .lbl { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* SERVICES */
.services-strip { background: var(--off); padding: 72px 80px; display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.service-card { background: var(--white); padding: 40px 36px; border-left: 3px solid transparent; transition: border-color 0.2s; }
.service-card:hover { border-left-color: var(--accent); }
.service-icon { font-size: 32px; margin-bottom: 20px; display: block; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--black); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--steel); line-height: 1.7; }

/* HOME INTRO */
.home-intro { padding: 96px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-text .label { font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.intro-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 44px); line-height: 1.2; color: var(--black); margin-bottom: 24px; }
.intro-text p { font-size: 15px; color: var(--steel); line-height: 1.8; margin-bottom: 16px; }
.intro-visual { background: linear-gradient(135deg, var(--black), #3a3420); aspect-ratio: 4/3; border-radius: 2px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.intro-visual::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(184,134,11,0.06) 20px, rgba(184,134,11,0.06) 21px); }
.intro-visual-inner { text-align: center; position: relative; z-index: 1; }
.intro-visual-inner .big { font-family: 'Playfair Display', serif; font-size: 80px; font-weight: 700; color: rgba(255,255,255,0.08); line-height: 1; display: block; }
.intro-visual-inner .since { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent2); }
.cta-band { background: var(--accent); padding: 64px 80px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 38px); color: var(--white); max-width: 560px; line-height: 1.3; }
.btn-white { background: var(--white); color: var(--accent); font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 16px 36px; border: none; cursor: pointer; text-decoration: none; display: inline-block; white-space: nowrap; transition: all 0.2s; border-radius: var(--r); flex-shrink: 0; }
.btn-white:hover { background: var(--off); }

/* PAGE HERO */
.page-hero { background: linear-gradient(160deg, var(--black), #2d2a22); padding: 64px 80px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent2), transparent); }
.page-hero .label { font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--accent2); margin-bottom: 12px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 60px); color: var(--white); line-height: 1.1; }
.content-wrap { padding: 72px 80px; }
.content-wrap.alt { background: var(--off); }

/* OVER */
.about-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; }
.about-body p { font-size: 16px; color: var(--steel); line-height: 1.85; margin-bottom: 20px; }
.about-body p.groot { font-size: 18px; color: var(--dark); }
.about-side { display: flex; flex-direction: column; gap: 16px; }
.fact-box { background: var(--white); border: 1px solid var(--light); border-left: 4px solid var(--accent); padding: 20px 24px; }
.fact-box h4 { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.fact-box p { font-size: 14px; color: var(--dark); line-height: 1.5; }
.reynaers-badge { background: var(--black); color: var(--white); padding: 24px; text-align: center; }
.reynaers-badge p { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.reynaers-badge strong { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--accent2); }

/* VOORDELEN */
.voordelen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; }
.voordeel-card { background: var(--white); border: 1px solid var(--light); padding: 32px 28px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.voordeel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: var(--accent); }
.voordeel-card .icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.voordeel-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--black); margin-bottom: 10px; }
.voordeel-card p { font-size: 14px; color: var(--steel); line-height: 1.7; }

/* VACATURE */
.vacature-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.vacature-body h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--black); margin-bottom: 16px; line-height: 1.3; }
.vacature-body > p { font-size: 15px; color: var(--steel); line-height: 1.8; margin-bottom: 32px; }
.profiel-title { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.profiel-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.profiel-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--dark); }
.profiel-list li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.aanbod-card { background: var(--black); padding: 40px; color: var(--white); }
.aanbod-card .tag { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent2); margin-bottom: 16px; }
.aanbod-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--white); margin-bottom: 16px; line-height: 1.3; }
.aanbod-card > p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 32px; }
.aanbod-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.aanbod-perks .perk { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); }
.aanbod-perks .perk::before { content: '✓'; color: var(--accent2); font-weight: 700; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--black); margin-bottom: 12px; }
.contact-info > p { font-size: 15px; color: var(--steel); line-height: 1.8; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon { width: 44px; height: 44px; background: var(--off); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-body h4 { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.ci-body a, .ci-body p { font-size: 15px; color: var(--dark); text-decoration: none; line-height: 1.6; }
.ci-body a:hover { color: var(--accent); }
.uren-card { background: var(--off); border: 1px solid var(--light); padding: 32px; margin-top: 32px; }
.uren-card h3 { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.uur-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--light); font-size: 14px; }
.uur-row:last-child { border-bottom: none; }
.uur-row .dag { font-weight: 500; color: var(--dark); }
.uur-row .tijd { color: var(--steel); }
.map-container { border-radius: var(--r); overflow: hidden; border: 1px solid var(--light); }
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }
.contact-form { background: var(--white); border: 1px solid var(--light); padding: 40px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--black); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--light); border-radius: var(--r); font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--dark); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; padding: 16px 20px; border-radius: var(--r); font-size: 14px; }
.form-fouten { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 14px 20px; border-radius: var(--r); font-size: 13px; margin-bottom: 20px; }

/* AV */
.av-content { max-width: 780px; }
.av-artikel { border-bottom: 1px solid var(--light); padding: 24px 0; }
.av-artikel:last-child { border-bottom: none; }
.av-artikel h3 { font-size: 14px; font-weight: 600; letter-spacing: 1px; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; }
.av-artikel p { font-size: 14px; color: var(--steel); line-height: 1.8; }
.av-footer-note { background: var(--off); border: 1px solid var(--light); padding: 20px 24px; margin-top: 32px; font-size: 13px; color: var(--steel); }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,0.5); padding: 48px 80px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand .name { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); margin-bottom: 12px; }
.footer-brand .name span { color: var(--accent2); }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent2); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col p { font-size: 13px; line-height: 1.8; }
.footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent2); }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero, .content-wrap, .page-hero, .cta-band, .home-intro, .services-strip { padding-left: 24px; padding-right: 24px; }
  .hero { padding-bottom: 160px; }
  .hero-stats-bar { padding: 20px 24px; gap: 28px; }
  .services-strip { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; }
  .home-intro { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 48px; gap: 40px; }
  .about-grid, .vacature-wrap, .contact-grid { grid-template-columns: 1fr; }
  .voordelen-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 24px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
