:root{
  --red:#e33436;
  --dark-red:#b81f22;
  --bg:#ffffff;
  --soft-bg:#f6f6f6;
  --card:#ffffff;
  --text:#1a1a1a;
  --muted:#666666;
  --line:#ededed;
  --radius:14px;
  --shadow:0 18px 50px rgba(0,0,0,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 30%, #f7f7f7 100%);
  color:var(--text);
}

.container{width:min(1100px,92%);margin:auto}
.link{color:inherit;text-decoration:none}
.link:hover{color:var(--red);text-decoration:underline}

/* Skip link + noscript */
.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:#000;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  z-index:99999;
}
.skip-link:focus{left:10px}
.noscript{
  background:#fff3f3;
  border:1px solid rgba(196,22,28,.18);
  padding:12px 14px;
  border-radius:14px;
  width:min(1100px,92%);
  margin:12px auto 0;
}

/* Topbar */
.topbar{
  background:var(--red);
  color:#fff;
  font-size:14px;
}
.topbar-inner{
  display:flex;
  justify-content:flex-end;
  gap:18px;
  padding:8px 0;
  flex-wrap:wrap;
}
.topbar-item, .topbar-item a{color:#fff;text-decoration:none}

/* Header */
.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:60;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}
.logo{
  width:48px;
  height:48px;
  border-radius:12px;
  object-fit:contain;
  background:#fff;
  padding:6px;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-title{font-weight:900;color:var(--red);letter-spacing:-.2px}
.brand-sub{font-size:13px;color:var(--muted)}

.nav{display:flex;gap:20px;align-items:center}
.nav a{color:var(--text);text-decoration:none;font-weight:700;font-size:14px}
.nav a:hover{color:var(--red)}

.nav-toggle{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
}
.nav-toggle span{
  display:block;height:2px;margin:7px 10px;
  background:var(--text);border-radius:2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  background:var(--red);
  color:#fff;
  box-shadow: 0 10px 25px rgba(196,22,28,.28);
}
.btn:hover{background:var(--dark-red)}
.btn-ghost{
  background:#fff;
  color:var(--red);
  border:2px solid var(--red);
  box-shadow:none;
}
.btn-small{padding:10px 12px;border-radius:12px;font-size:14px}
.reviews-btn{margin-top:14px; width:fit-content}

/* HERO */
.hero{padding:28px 0 0}
.hero-shell{
  display:grid;
  grid-template-columns: 1.45fr .85fr;
  gap:22px;
  align-items:stretch;
}
.hero-slider{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
  background: #000;
}
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .7s ease;
  border-radius:24px;
  overflow:hidden;
}
.slide.is-active{opacity:1;transform: scale(1)}
.slide::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--bg) center/cover no-repeat;
  z-index:0;
}
.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(196,22,28,.35), rgba(0,0,0,.10));
  z-index:1;
}
.slide::before,.slide::after{pointer-events:none}

.slide-content{
  position:relative;
  z-index:2;
  padding:52px;
  color:#fff;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.pill{
  display:inline-flex;
  width:fit-content;
  padding:7px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.28);
  font-size:13px;
  font-weight:800;
  margin-bottom:12px;
}
.hero h1{
  margin:0 0 14px;
  font-size:44px;
  line-height:1.1;
  letter-spacing:-.6px;
}
.hero-h2{
  margin:0 0 14px;
  font-size:44px;
  line-height:1.1;
  letter-spacing:-.6px;
  font-weight:900;
}
.lead{
  margin:0 0 22px;
  max-width:560px;
  color: rgba(255,255,255,.92);
  font-size:17px;
  line-height:1.6;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-actions .btn-ghost{
  border-color: rgba(255,255,255,.85);
  color:#fff;
  background: rgba(255,255,255,.10);
}

/* Slide controls */
.slide-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.25);
  color:#fff;
  font-size:26px;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:6;
}
.slide-btn:hover{background: rgba(0,0,0,.35)}
.slide-btn.prev{left:16px}
.slide-btn.next{right:16px}

.dots{
  position:absolute;
  left:28px;
  bottom:18px;
  display:flex;
  gap:8px;
  z-index:6;
}
.dot{
  width:10px;height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.18);
  cursor:pointer;
}
.dot.is-active{background:#fff}

/* Hero side card */
.hero-card{
  background:#fff;
  border-radius:22px;
  box-shadow: var(--shadow);
  padding:22px;
  border:1px solid var(--line);
}
.hero-card h2{margin:0 0 12px;color:var(--text);font-size:20px}
.checklist{margin:0;padding-left:18px;color:var(--text);line-height:1.8}
.notice{
  margin-top:14px;
  padding:12px;
  border-radius:14px;
  background: #fff3f3;
  border: 1px solid rgba(196,22,28,.18);
}
.notice strong{color:var(--red)}

/* Sections */
.section{padding:70px 0}
.section.alt{background: var(--soft-bg)}
.section-head{margin-bottom:18px}
.section-head h2{margin:0;font-size:30px;color:var(--red);letter-spacing:-.4px}
.section-head p{margin:8px 0 0;color:var(--muted)}

/* Grid / Cards */
.grid{display:grid;gap:18px}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.card h3{margin:0 0 8px;color:var(--text)}
.card p{margin:0;color:var(--muted);line-height:1.6}

.muted{color:var(--muted)}
.small{font-size:13px}

/* Media cards */
.media-cards{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.media-card img,
.offer-card img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:18px;
  display:block;
}
.media-card .card-body,
.offer-card .card-body{ padding-top:14px; }

.photo-strip{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.photo-strip img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:16px;
  display:block;
}

/* Gallery */
.gallery-wrap{ margin-top:24px; }
.gallery-title{ margin:0 0 6px 0; font-size:1.25rem; }
.gallery-sub{ margin:0 0 14px 0; }

.gallery{
  display:grid;
  grid-template-columns:repeat(6, minmax(0,1fr));
  gap:12px;
}
.gallery-item{
  display:block;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.06);
  background:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,0.06);
}
.gallery-item img{
  width:100%;
  height:110px;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform .25s ease;
}
.gallery-item:hover img{ transform:scale(1.04); }

.gallery-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}
.gallery-collapsible{ display:none; }
.gallery-collapsible[aria-hidden="false"]{ display:block; }

/* Lightbox */
body.is-locked{ overflow:hidden; }

.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(0,0,0,0.72);
  z-index:9999;
}
.lightbox[aria-hidden="false"]{ display:flex; }

.lightbox-content{
  max-width:min(1000px, 96vw);
  max-height:86vh;
  background:#111;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
}
.lightbox-img{
  width:100%;
  height:auto;
  max-height:78vh;
  object-fit:contain;
  display:block;
  background:#000;
}
.lightbox-caption{
  padding:12px 14px;
  color:rgba(255,255,255,0.85);
  font-size:0.95rem;
}
.lightbox-close{
  position:fixed;
  top:16px;
  right:16px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.25);
  background:rgba(0,0,0,0.25);
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  z-index:10001;
}
.lightbox-close:hover{ background:rgba(0,0,0,0.45); }

/* Aanbiedingen */
.offer-cards{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.offer-card{ position:relative; overflow:hidden; }
.badge{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background: #fbeaea;
  color: var(--red);
  font-weight:900;
  font-size:12px;
}

/* Openingstijden */
.hours{ padding:18px 18px 12px; max-width:640px; }
.hours-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 6px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.hours-row:last-of-type{ border-bottom:none; }
.hours .day{font-weight:700}
.hours .time{font-weight:700; color: var(--text)}

/* Location */
.location{ grid-template-columns:.9fr 1.1fr; }
.map{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  min-height:320px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.map iframe{width:100%;height:100%;min-height:320px;border:0}
.location-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}

/* Contact */
.contact{grid-template-columns:1fr 1fr}

/* FAB */
.fab{
  position:fixed;right:18px;bottom:18px;
  width:56px;height:56px;
  display:grid;place-items:center;
  border-radius:999px;
  text-decoration:none;
  background:#25d366;
  color:#fff;
  font-size:22px;
  font-weight:900;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  z-index:60;
}

/* Footer */
.footer{
  padding:28px 0;
  background:#fff;
  border-top:1px solid rgba(0,0,0,.08);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:16px;
  align-items:start;
}
.footer-brand{ font-weight:900; }
.privacy-line{margin-top:10px}

/* Responsive */
@media (max-width: 980px){
  .media-cards{grid-template-columns: repeat(2, minmax(0,1fr));}
  .offer-cards{grid-template-columns: repeat(2, minmax(0,1fr));}
  .photo-strip{grid-template-columns: repeat(2, minmax(0,1fr));}
  .gallery{grid-template-columns: repeat(3, minmax(0,1fr));}
  .footer-inner{grid-template-columns:1fr; gap:10px;}
}
@media (max-width: 920px){
  .hero-shell{grid-template-columns:1fr}
  .slide-content{padding:36px}
  .hero h1, .hero-h2{font-size:36px}
  .location{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .nav{display:none}
  .nav.open{
    display:flex;flex-direction:column;gap:12px;
    position:absolute;right:4%;top:72px;
    background:#fff;border:1px solid var(--line);
    border-radius:18px;padding:14px;width:92%;
    box-shadow: var(--shadow);
  }
  .nav-toggle{display:block}
  .hero h1, .hero-h2{font-size:30px}
  .slide-content{padding:28px}
  .slide-btn{display:none}
  .gallery{grid-template-columns: repeat(2, minmax(0,1fr));}
  .gallery-item img{height:120px;}
}

/* CONTACT MODAL */
.contact-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9998;
}
.contact-modal[aria-hidden="false"]{ display:block; }

.contact-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.contact-modal-card{
  position: relative;
  width: min(520px, 92vw);
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.30);
  z-index: 9999;
  outline: none;
}

.contact-modal-card h3{ margin: 0 0 6px; font-size: 20px; }

.contact-modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

.contact-modal-grid{ margin-top: 14px; display: grid; gap: 14px; }

.contact-line{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 12px;
  background: #fafafa;
  display: grid;
  gap: 6px;
}
.contact-line strong{ font-weight: 900; }
.contact-line .btn{ width: fit-content; }

@media (max-width: 520px){
  .contact-modal-card{ padding: 16px; }
}
