:root{
  --primary:#005C63;
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --line:rgba(255,255,255,.22);
  --chip:rgba(255,255,255,.10);
  --chipHover:rgba(255,255,255,.16);
}

*{ box-sizing:border-box; }

html, body { overflow-x: hidden; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--primary);
  color: var(--text);
}

.wrap{
  padding: 48px 16px 54px;
  display:grid;
  gap:40px;
}

.hero{
  text-align:center;
  padding: 48px 16px 0;
}

.logo{
  margin: 0 auto 14px;
  max-width: 420px;
}

.logo img{
  width:100%;
  height:auto;
  display:block;
}

.tagline{
  margin:0 auto;
  max-width:64ch;
  font-size:17px;
  line-height:1.6;
  color:var(--muted);
}

/* FOTO */
.photo{
  width:100%;
  max-width:760px;
  margin:0 auto;
  aspect-ratio:16 / 9;
  border-radius:34px;
  overflow:hidden;
  position:relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.25)),
    url("images/gebouw.jpg");
  background-size:cover;
  background-position:center;
  box-shadow:0 22px 60px rgba(0,0,0,.25);
}

.photo::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:34px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  pointer-events:none;
}

/* CONTACT REGEL */
.contactbar{
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:center;
}

.contactbar-inner{
  width:100%;
  max-width:760px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: var(--chip);
  color:#fff;
  font-size: 13px;
  text-decoration:none;
  line-height:1;
  white-space:normal;
  max-width: 100%;
}

.chip:hover{
  background: var(--chipHover);
}

.chip svg{
  display:block;
  flex-shrink:0;
}

.footer{
  text-align:center;
  font-size:13px;
  opacity:.65;
  margin-top:-6px;
  padding: 0 16px 24px;
}

/* Visually hidden (for accessible H1) */
.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}
