:root{
  --bg:#0B0B0D;
  --surface:#14151A;
  --text:#F2F2F2;
  --muted:#A8ABB3;
  --border:rgba(255,255,255,.08);
  --accent:#ff8200; /* jouw oranje */
  --open:#3DDC97;
  --closed:#FFB020;

  --radius:18px;
  --shadow: 0 18px 40px rgba(0,0,0,.45);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.35);
  --ease: cubic-bezier(.2,.8,.2,1);
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
}
a{ color:inherit; text-decoration:none; }
.container{ max-width:1120px; margin:0 auto; padding:0 22px; }

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,11,13,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:12px; min-width: 220px; }
.brand-logo{
  height:28px;
  width:auto;
  display:block;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}
.brand-name{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-weight:700;
  letter-spacing:.2px;
  white-space:nowrap;
  color: rgba(242,242,242,.92);
  font-size:14px;
}
.nav{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.nav a{
  font-weight:800;
  color: rgba(242,242,242,.86);
  padding:8px 10px;
  border-radius:12px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.nav a:hover{ background: rgba(255,255,255,.06); color: var(--text); transform: translateY(-1px); }

.header-status{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

@media (max-width: 980px){
  .header-inner{ flex-direction:column; align-items:flex-start; }
  .brand{ min-width: unset; }
  .header-status{ justify-content:flex-start; }
}

/* Fullwidth banner */
.hero-banner{
  width:100%;
  border-bottom: 1px solid var(--border);
  background: #000;
}
.hero-banner img{
  display:block;
  width:100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
  opacity: .92;
}
@media (min-width: 1100px){
  .hero-banner img{ height: 550px; }
}
@media (max-width: 640px){
  .hero-banner img{ height: 350px; }
}

/* Status pill */
.status-pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow-soft);
}
.dot{
  width:9px; height:9px; border-radius:999px;
  background: var(--open);
  box-shadow: 0 0 0 6px rgba(61,220,151,.12);
}
.status-pill[data-state="closed"] .dot{
  background: var(--closed);
  box-shadow: 0 0 0 6px rgba(255,176,32,.12);
}
.status-text{ font-size:13px; font-weight:900; color: rgba(242,242,242,.94); }
.status-sub{ font-size:12px; color: var(--muted); font-weight:700; }

/* Hero */
.hero{ padding:38px 0 26px; }
.hero-grid{
  display:grid; grid-template-columns: 1.1fr .9fr;
  gap:22px;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
}
.hero-card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  padding:28px;
}
.hero-side{ padding:22px; }
.kicker{
  color: var(--muted);
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin:0 0 10px;
}
.h1{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height:1.05;
  margin:0 0 12px;
}
.lead{
  margin:0 0 14px;
  color: rgba(242,242,242,.78);
  font-size:16px;
}

/* Buttons - SOLID ORANJE (geen verloop) */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 14px;
  font-weight:900;
  letter-spacing:.2px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: rgba(255,255,255,.14); }
.btn:active{ transform: translateY(0) scale(.98); }

.btn-primary{
  background: var(--accent);
  border-color: rgba(255,130,0,.35);
  box-shadow: 0 18px 40px rgba(255,130,0,.18);
  color:#14151A;
}
.btn-primary:hover{
  box-shadow: 0 22px 46px rgba(255,130,0,.22);
}

.btn-small{ padding:10px 12px; border-radius: 12px; font-size:13px; }

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }
.hero-status{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }

/* Location cards */
.location-grid{ display:grid; grid-template-columns:1fr; gap:12px; }
.location-card{
  border:1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding:16px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.location-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: rgba(255,255,255,.14); }
.location-title{ font-weight:900; font-size:15px; }
.location-addr{ color: rgba(242,242,242,.72); font-weight:700; font-size:13px; margin-top:4px; }
.location-actions{ display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.location-status{ margin-top:12px; }

/* Sections */
.section{ padding:26px 0; }
.section-title{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size:22px;
  margin:0 0 10px;
}
.card-grid{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
@media (max-width: 980px){ .card-grid{ grid-template-columns:1fr; } }

.mini-card{
  border:1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding:16px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.mini-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: rgba(255,255,255,.14); }

.hr{ height:1px; background: var(--border); margin:14px 0; }

/* Page */
.page-card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  padding:28px;
}
.page-title{ font-size: clamp(28px, 2.8vw, 40px); margin-bottom:10px; }
.prose p{ margin: 0 0 12px; color: rgba(242,242,242,.78); }

/* Footer */
.site-footer{
  border-top:1px solid var(--border);
  margin-top:38px;
  padding:22px 0;
  color: rgba(242,242,242,.66);
  font-size:13px;
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.footer-links a{ color: rgba(242,242,242,.72); font-weight:700; }
.footer-links a:hover{ color: var(--text); }

/* Fluent Forms Lite styling */
.ff-el-form-control,
.ff-el-form-control:focus{
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: var(--text) !important;
  border-radius: 14px !important;
  padding: 12px 12px !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.ff-el-form-control:focus{
  border-color: rgba(255,130,0,.45) !important;
  box-shadow: 0 0 0 6px rgba(255,130,0,.10) !important;
}
.ff-el-input--label label,
.ff-el-input--label{
  color: rgba(242,242,242,.78) !important;
  font-weight: 900 !important;
}
.ff-btn{
  border-radius: 14px !important;
  font-weight: 900 !important;
  border: 1px solid rgba(255,130,0,.35) !important;
  background: var(--accent) !important;
  box-shadow: 0 18px 40px rgba(255,130,0,.18) !important;
  padding: 12px 16px !important;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease) !important;
  color:#14151A !important;
}
.ff-btn:hover{ transform: translateY(-2px) !important; box-shadow: var(--shadow) !important; }
.ff-message-success{
  background: rgba(61,220,151,.10) !important;
  border: 1px solid rgba(61,220,151,.25) !important;
  color: rgba(242,242,242,.92) !important;
  border-radius: 16px !important;
}