*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-family);
}
a{color:inherit;text-decoration:none}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

/* INFOBAR */
.infobar{
  background:var(--infobar-bg);
  color:var(--infobar-text);
  font-weight:800;
  letter-spacing:.5px;
}
.infobar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}
.infobar-right{display:flex;gap:22px}
.infobar-link{
  color:var(--infobar-text);
  font-weight:900;
  text-transform:uppercase;
  font-size:var(--nav-font-size);
}

/* HERO WRAPPER */
.site-hero{
  position:relative;
  min-height:440px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.60), rgba(0,0,0,.80)),
    var(--hero-url) center/cover no-repeat;
  border-bottom:2px solid var(--gold);
}

/* HEADER */
.header{
  position:relative;
  padding:18px 0 10px 0;
}
.header-inner{
  display:flex;
  align-items:center;
  gap:22px;
}
.brand{display:flex;align-items:center;gap:12px}

/* header logo uit DB vars */
.brand-logo{
  height:var(--header-logo-height);
  width:auto;
  max-width:var(--header-logo-max-width);
}

.nav-desktop{
  display:flex;
  gap:34px;
  margin-left:40px;
  flex:1;
  justify-content:center;
}
.nav-link{
  font-weight:900;
  text-transform:uppercase;
  font-size:var(--nav-font-size);
  letter-spacing:.7px;
  opacity:.92;
  position:relative;
  padding:10px 0;
}
.nav-link.is-active::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:3px;
  background:var(--gold);
}

.btn-cta{
  border:2px solid var(--gold);
  padding:12px 18px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.6px;
}
.btn-cta:hover{background:rgba(225,173,47,.10)}

.mobile-toggle{
  display:none;
  margin-left:auto;
  background:transparent;
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  border-radius:10px;
  padding:10px 12px;
}

/* Mobile nav dropdown */
.nav-mobile{
  display:none;
  padding:10px 0 0 0;
}
.nav-mobile.is-open{display:block}
.nav-mobile .nav-link{
  display:block;
  padding:12px 0;
  border-top:1px solid rgba(255,255,255,.08);
}

/* HERO CENTER TEXT */
.hero-center{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:70px 0 60px 0;
}
.hero-inner{max-width:900px}
.hero-kicker{
  font-weight:900;
  letter-spacing:2px;
  opacity:.85;
}
.hero-title{
  margin:10px 0 0 0;
  font-size:var(--hero-title-size);
  line-height:1;
  letter-spacing:2px;
  font-weight:1000;
}
.hero-underline{
  width:160px;
  height:6px;
  background:var(--gold);
  margin:18px auto 0 auto;
  border-radius:8px;
}

/* MAIN SECTIONS */
.site-main{
  background:
    radial-gradient(900px 600px at 80% 40%, rgba(225,173,47,.22), transparent 60%),
    linear-gradient(180deg, #0b0d0e, #0c0e10);
  padding:70px 0;
}

.section{padding:40px 0}
.section-title{
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:1.3px;
  color:var(--muted);
}
.section-headline{
  margin:10px 0 16px 0;
  font-size:var(--section-headline-size);
  font-weight:1000;
  letter-spacing:1.2px;
}
.section-text{
  max-width:820px;
  color:rgba(255,255,255,.80);
  line-height:1.7;
}

.btn-primary{
  display:inline-block;
  margin-top:18px;
  background:var(--gold);
  color:#111;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.7px;
  padding:14px 18px;
}
.btn-primary:hover{background:var(--gold2)}

/* Over-ons split + circles */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:44px;
  align-items:center;
}
.circles{position:relative;min-height:320px}
.circle{
  position:absolute;
  border:3px solid rgba(255,255,255,.85);
  border-radius:999px;
  background:rgba(0,0,0,.25);
  backdrop-filter: blur(2px);
}
.circle.big{width:260px;height:260px;right:10px;top:10px}
.circle.small{width:170px;height:170px;right:0;top:160px}

/* FOOTER */
.footer{
  background:linear-gradient(180deg, #0a0b0c, #070808);
  padding:0;
}
.footer-line{height:2px;background:rgba(225,173,47,.75)}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap:40px;
  padding:44px 0;
  align-items:start;
}

/* footer logo uit DB vars */
.footer-logo{
  height:var(--footer-logo-height);
  width:auto;
  max-width:var(--footer-logo-max-width);
  opacity:.95;
}

.footer-title{
  font-weight:1000;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.footer-link{
  display:block;
  padding:8px 0;
  color:rgba(255,255,255,.84);
}
.footer-link:hover{color:#fff}
.footer-bottom{
  text-align:center;
  padding:18px 0;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  border-top:1px solid rgba(255,255,255,.06);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .nav-desktop{display:none}
  .mobile-toggle{display:block}
  .hero-title{font-size:46px}
  .split{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr; gap:26px}
}

@media (max-width: 560px){
  .infobar-inner{flex-direction:column;gap:8px;align-items:flex-start}
  .hero-title{font-size:38px}
  .footer-grid{grid-template-columns:1fr}
}
