:root {
  --bg: #f7f7f7;
  --bg-light: #ffffff;
  --text: #111111;
  --muted: #6d6d6d;
  --accent: #b89a5a;
  --accent-dark: #8f7844;
  --border: #e2e2e2;
  --radius-lg: 18px;
  --radius-md: 10px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.04);
  --max-width: 1120px;
  --header-offset: 85px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

html {
  scroll-padding-top: var(--header-offset, 85px);
  scroll-behavior: smooth;
}

/* Sticky header styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 247, 247, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

/* Logo */
.logo { font-weight: 600; letter-spacing: 0.18em; font-size: 14px; text-transform: uppercase; display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 24px; font-weight: 700; color: #333; letter-spacing: 0.4px; }
.logo-sub { font-size: 10px; font-weight: 400; color: var(--accent); text-transform: uppercase; letter-spacing: 10px; }

/* Navigatie */
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; }
.main-nav a { position: relative; padding-bottom: 2px; display: inline-flex; align-items: center; height: 40px; line-height: 1; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width .18s ease-out; }
.main-nav a:hover::after { width: 100%; }

/* Buttons */
.btn-primary, .btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; font-size: 14px; border-radius: 999px; border: none; cursor: pointer; white-space: nowrap; transition: background .18s ease-out, color .18s ease-out, box-shadow .18s ease-out, transform .08s ease-out; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 25px rgba(184, 154, 90, 0.25); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(184, 154, 90, 0.35); }
.btn-secondary { background: #fff; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: #f0f0f0; }
.nav-cta { margin-left: 8px; height: 40px; padding: 0 18px; }
.btn-block { width: 100%; }

/* Mobiel menu toggle */
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 999px; background: transparent; border: 0; padding: 0; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle-bar { display: block; width: 18px; height: 2px; background: var(--accent); border-radius: 2px; opacity: .95; }

[hidden] { display: none !important; }
body.nav-open { overflow: hidden; }
.mobile-nav { position: fixed; inset: 64px 12px auto 12px; z-index: 50; background: rgba(255, 255, 255, 0.98); border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 18px; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10); backdrop-filter: blur(10px); padding: 14px; }
.mobile-nav-inner { display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-link { padding: 10px 12px; border-radius: 12px; border: 1px solid rgba(0, 0, 0, 0.06); background: #fff; font-size: 15px; min-height: 44px; display: flex; align-items: center; }
.mobile-nav-cta { width: 100%; min-height: 44px; margin-top: 6px; }

/* Footer */
.site-footer { border-top: 1px solid rgba(0, 0, 0, 0.05); padding: 18px 0 26px; font-size: 12px; color: var(--muted); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* Media Queries (global) */
@media (max-width: 960px) {
  .site-header-inner { padding-inline: 16px; }
  .main-nav { display: none !important; }
  .nav-toggle { display: flex !important; }
}

@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .site-header-inner { padding: 10px 14px; }
  .logo-name { font-size: 18px; }
  .logo-sub { letter-spacing: 6px; }
}
