:root{
  --bg: #0f1115;
  --text: #1b1f2a;
  --muted: #6b7280;
  --white: #ffffff;
  --brand: #e60000;
  --sheet: url("https://tiserbo.be/dist/images/bg_blanc.png");
  --shadow: 0 10px 25px rgba(0,0,0,.12);
  --radius: 14px;
  --max: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #f6f7fb;
}

a{ color: inherit; }
img{ max-width: 100%; height: auto; display: block; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}
.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  padding: 10px 12px;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; top: 10px; box-shadow: var(--shadow); border-radius: 10px; }

.brand-red{ color: var(--brand); }
.muted{ color: var(--muted); }
.mt{ margin-top: 16px; }

/* Header / Nav */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111827;
  color: var(--white);
  box-shadow: 0 2px 0 rgba(0,0,0,.08);
}

/* .nav-wrap{ */
  /* max-width: calc(var(--max) + 80px); */
  /* margin: 0 auto; */
  /* padding: 10px 16px; */
  /* display: flex; */
  /* align-items: center; */
  /* gap: 12px; */
/* } */
.nav-wrap {
/*     max-width: calc(var(--max) + 80px); */
    /* margin: 0 auto; */
    /* margin-left: 10%; */
    /* margin-right: 35%; */
   /* display: flex; */
   margin-left: 10vw;
/*    gap: 8px;               */
/*    align-items: center;    */
/*    flex-wrap: nowrap;      */
}
.nav-wrap .nav-deuce{
  display: flex;
  align-items: center;
}
.brand{ display: inline-flex; align-items: center; margin-left: 5%; }
.logo{ width: 160px; height: auto; }

button.nav-toggle{
  margin-right: 10px;
}

.nav-toggle{
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: var(--white);
  border-radius: 12px;
  height: 42px;
  width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle-bars{
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--white);
}
.nav-toggle-bars::before{ top: -6px; }
.nav-toggle-bars::after{ top: 6px; }

.nav{
  width: 100%;
  display: none; /* mobile collapsed */
  flex-direction: column;
  gap: 12px;
  padding: 10px 0 6px;
}

.nav.is-open{ display: flex;}

.nav.is-open .nav-actions .login-form{
  position: unset;
}
.nav.is-open .nav-actions .login-form .input{
  width: unset;
}
.nav-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-link{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 12px;
}
.nav-link:hover{ background: rgba(255,255,255,.08); }
.nav-link.is-active{ background: rgba(255,255,255,.10); }

.nav-btn{
  border: 0;
  background: transparent;
  font: inherit;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.nav-actions{
  padding: 0 12px 10px;
}

.login-form{
  display: flex;
  gap: 8px;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 30px;
  text-align: right;
}

.input{
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--white);
  padding: 0 12px;
  width: 100%;
}
.input::placeholder{ color: rgba(255,255,255,.65); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: var(--white);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.btn:hover{ box-shadow: var(--shadow); }

.btn-outline{
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
}
.btn-outline:hover{ background: rgba(255,255,255,.08); }

/* Dropdown */
.has-dropdown{ position: relative; }
.dropdown{
  display: none;
  padding: 6px;
  margin: 0 12px 8px;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
}
.dropdown.is-open{ display: block; }

.dropdown-link{
  display: block;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 10px;
}
.dropdown-link:hover{ background: rgba(255,255,255,.08); }

/* Desktop nav */

@media (min-width: 900px){
  .nav-toggle{ display: none; }
  /* .nav{ */
    /* display: flex !important; */
    /* flex-direction: row; */
    /* align-items: center; */
    /* justify-content: space-between; */
    /* padding: 0; */
    /* gap: 18px; */
    /* width: auto; */
    /* margin-left: auto; */
  /* } */

   .nav {
       display: flex !important;
       padding: 0;
       width: auto;
       margin-left: 2.5vw;
       flex-direction: row;
   }


  .nav-wrap {
    margin-left: 5vw;
	display: inline-flex;
  }

  .nav-list{
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }
  .nav-actions{ padding: 0; }
  .login-form .input{ width: 190px; }

  .has-dropdown .dropdown{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    margin: 0;
    min-width: 260px;
    box-shadow: var(--shadow);
  }
}
@media (min-width: 1100px){
  .brand{margin-left: 10%;}


.nav {
    margin-left: 12.5vw;
}


}
/* Hero */
.hero{
  min-height: 240px;
  height: 400px;
  background-image: url("https://www.tiserbo.be/dist/images/new-york.jpg");
  background-size: cover;
  background-position: bottom;
  position: relative;
}
.hero-overlay{
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 30px 16px;
  background: linear-gradient(to bottom, rgba(0,0,0,.30), rgba(0,0,0,.10));
}
.hero-slogan{
  font-family: "Jura", system-ui, sans-serif;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0,0,0,.45);
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  letter-spacing: .02em;
}
.hero-slogan::before, .hero-slogan::after{
  content:"≡";
  font-weight: 800;
  margin: 0 1.2rem;
}

/* Sheet & layout */
.sheet{
  background: var(--sheet);
  padding: 26px 0 40px;
}
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

.section{ padding-top: 10px; }
.divider{
  height: 1px;
  background: rgba(0,0,0,.12);
  margin: 34px 0;
}

.h2{
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
}

.h2.short{
  margin: 0 10%;
}
.lead{
  font-size: 1.05rem;
  line-height: 1.55;
}

.two-cols{
  display: grid;
  gap: 18px;
  /* align-items: start; */
}
@media (min-width: 900px){
  .two-cols{ grid-template-columns: 1.2fr .8fr; }
  .two-cols.wallonie{ grid-template-columns: 1.2fr .6fr; }
  .h2.short{margin: 0 200px;}
}

.media{
  display: grid;
  place-items: center;
}
.media img{
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media.small img{
  max-width: 220px;
  box-shadow: none;
  border-radius: 10px;
}

.link-list{
  margin: 14px 0 0;
  padding-left: 18px;
}
.link-list a{
  color: #0b57d0;
  text-decoration: none;
}
.link-list a:hover{ text-decoration: underline; }

/* Cards */
.cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 10px;
}
@media (min-width: 700px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1050px){
  .cards{ grid-template-columns: repeat(3, 1fr); }
}

.card{
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  padding: 16px;
  display: grid;
  gap: 10px;
}
.card h3{ margin: 4px 0 0; }
.card p{ margin: 0; color: #374151; line-height: 1.45; }
.card img{ width: 220px; margin: 6px auto 0; box-shadow: none; border-radius: 0; }

@media (min-width: 700px){
  .card img{ width: 180px;}
}
/* Footer */
.footer{
  padding: 14px 0 6px;
  color: #4b5563;
}
.footer a{ color: #0b57d0; text-decoration: none; }
.footer a:hover{ text-decoration: underline; }

/* Scroll top */
.scroll-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: none;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: var(--white);
  padding: 10px 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.scroll-top.is-visible{ display: inline-flex; }
.scroll-top span{ font-weight: 600; }