
:root{
  --beige: #d8c1ad;
  --beige-2: #e7d6c8;
  --beige-3: #f3ece6;
  --text: #2d2a26;
  --muted: #6f6a64;
  --white: #ffffff;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth;}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color:var(--text);
  background: var(--white);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:var(--max);margin:0 auto;padding:0 18px}

.topbar{
  background: var(--white);
  border-bottom: 1px solid rgba(45,42,38,.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:baseline;
  gap:10px;
}
.brand .logo{
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing:.5px;
  font-size:30px;
}
.brand .sub{
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color: var(--muted);
}
.menu{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}
.menu a{
  font-size:14px;
  color: var(--muted);
}
.menu a:hover{color:var(--text)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(45,42,38,.18);
  background: var(--white);
  font-size:14px;
  white-space:nowrap;
}
.btn.primary{
  background: var(--beige);
  border-color: transparent;
  color: #fff;
}
.btn.primary:hover{filter:brightness(.97)}
.btn.ghost:hover{background: rgba(216,193,173,.18)}

.hero{
  background: var(--beige-3);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:center;
  padding: 46px 0;
}
.hero h1{
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 44px;
  line-height:1.12;
  margin:0 0 12px;
}
.hero p{margin:0 0 18px;color:var(--muted);max-width:54ch}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}

.hero-card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(45,42,38,.08);
  background: var(--white);
}
.hero-card img{height:420px;width:100%;object-fit:cover}

.section{padding:54px 0}
.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
.section-title h2{
  margin:0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 30px;
}
.section-title p{margin:0;color:var(--muted)}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.card{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(45,42,38,.08);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  transition: transform .22s ease, box-shadow .22s ease;
  will-change: transform;
}
.card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 35px rgba(0,0,0,.10);
}
.card:focus-within{
  transform: translateY(-4px) scale(1.01);
}
.card .media img{height:220px;width:100%;object-fit:cover}
.card .body{padding:16px}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0;color:var(--muted);font-size:14px}
.badge{display:inline-block;font-size:12px;padding:6px 10px;border-radius:999px;background:rgba(216,193,173,.18);color:var(--text);margin-bottom:10px}

.strip{
  background: var(--beige-2);
}
.strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 22px 0;
  flex-wrap:wrap;
}
.strip h3{margin:0;font-size:18px}
.strip p{margin:0;color:rgba(45,42,38,.75)}

.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.gallery img{height:170px;width:100%;object-fit:cover;border-radius:14px;border:1px solid rgba(45,42,38,.08)}

.footer{
  background: #111;
  color: #eee;
  margin-top: 40px;
}
.footer a{color:#eee}
.footer .inner{
  padding: 34px 0;
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:20px;
}
.footer h4{margin:0 0 10px}
.footer p{margin:0 0 8px;color:rgba(255,255,255,.75);font-size:14px}
.footer small{display:block;padding:14px 0;border-top:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.65)}

.page-header{padding:34px 0;background:var(--beige-3);border-bottom:1px solid rgba(45,42,38,.08)}
.page-header h1{margin:0;font-family:"Georgia", "Times New Roman", serif;font-size:34px}
.page-header p{margin:8px 0 0;color:var(--muted)}

.list{margin:0;padding-left:18px;color:var(--muted)}
.form{display:grid;gap:12px;max-width:520px}
.input{padding:12px 12px;border-radius:12px;border:1px solid rgba(45,42,38,.18);font-size:14px}
textarea.input{min-height:120px;resize:vertical}

.notice{
  border:1px solid rgba(45,42,38,.12);
  background: rgba(216,193,173,.12);
  padding:12px 14px;
  border-radius: 14px;
  color: rgba(45,42,38,.9);
  font-size:14px;
}

.muted{color:var(--muted)}

/* Price list */
.price-wrap{max-width:820px}
.price-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid rgba(45,42,38,.10);
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}
.price-table thead th{
  text-align:left;
  font-size:14px;
  color: rgba(45,42,38,.75);
  background: rgba(216,193,173,.18);
  padding:14px 16px;
}
.price-table tbody td{
  padding:14px 16px;
  border-top:1px solid rgba(45,42,38,.08);
  font-size:15px;
}
.price-table tbody tr:hover td{background: rgba(216,193,173,.10)}
.price-table td:last-child, .price-table th:last-child{text-align:right;white-space:nowrap}
.tag{
  display:inline-block;
  margin-left:10px;
  padding:4px 9px;
  border-radius:999px;
  font-size:12px;
  background: rgba(216,193,173,.22);
  color: rgba(45,42,38,.85);
}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr;}
  .hero-card img{height:360px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .footer .inner{grid-template-columns:1fr}
  .menu{display:none}
}


/* Reviews */
.reviews-top{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}
.reviews-list{
  display:grid;
  gap:14px;
}
.review .stars{ font-size:16px; }
.rating-big{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:22px;
}
.stars{
  letter-spacing: 1px;
  color: #b28a6a;
}
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.card.pad{
  padding:18px;
}
.row{
  display:flex;
  gap:10px;
  align-items:center;
}
.row.between{
  justify-content:space-between;
}
.form .input{
  width:100%;
}
.notice.ok{
  border-color:#bcd8c2;
  background:#f3fbf5;
}
.strong{ font-weight:700; }
.muted{ color: var(--muted); }
@media (max-width: 860px){
  .reviews-top, .grid-2{ grid-template-columns: 1fr; }
}


@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .card{transition:none;}
}

.map-embed{
  width:100%;
  height:360px;
  border:0;
  border-radius: var(--radius);
}
.price-list{
  display:grid;
  gap:10px;
  max-width:720px;
}
.price-item{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border:1px solid rgba(45,42,38,.10);
  border-radius:14px;
  background: rgba(216,193,173,.08);
}
.price-item .name{font-weight:700;}
.price-item .price{white-space:nowrap;}
.modal-title{font-family: "Georgia", "Times New Roman", serif; margin:0 0 8px;}
.modal-sub{margin:0 0 12px; color: var(--muted);}
.dialog-backdrop::backdrop{background: rgba(0,0,0,.35);}
.dialog-box{border:0; border-radius: 22px; padding:0; width:min(760px, 92vw); box-shadow: 0 20px 60px rgba(0,0,0,.25);}
.dialog-box .inner{padding:18px;}
.dialog-box .top{display:flex; justify-content:space-between; align-items:center; gap:12px; padding:14px 18px; border-bottom:1px solid rgba(45,42,38,.08); background: var(--beige-3);}
.dialog-box .close{border:1px solid rgba(45,42,38,.18); background: var(--white); border-radius:999px; padding:8px 12px; cursor:pointer;}
.dialog-box ul{margin:10px 0 0; padding-left:18px; color: var(--muted);}

/* Foto placeholders (zichtbaar label, geen echte foto tonen) */
.media{position:relative;background:rgba(0,0,0,.04)}
.manual-photo{opacity:0}
.media::after{
  content:"Foto toevoegen";
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; color: rgba(45,42,38,.55);
  pointer-events:none;
}
/* Buttons styled like cards */
button.card{cursor:pointer; text-align:left; border:none; padding:0; background:transparent}
button.card .body{background:var(--white)}


dialog[open]{animation:fadeIn .25s ease;}
.dialog-card{animation:scaleIn .25s ease;}

@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@keyframes scaleIn{from{transform:scale(.95);opacity:0;}to{transform:scale(1);opacity:1;}}


/* MOBILE FIXES */
@media (max-width: 768px){

  .nav{
    flex-direction:column;
    align-items:flex-start;
  }

  .menu{
    display:flex !important;
    flex-wrap:wrap;
    gap:10px;
  }

  .hero-inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero h1{
    font-size:28px;
  }

  .container{
    padding:0 14px;
  }

  .card .media img{
    height:180px;
  }

  .dialog-card{
    width:95vw;
    max-height:85vh;
    overflow-y:auto;
  }

  .dialog-body{
    font-size:14px;
  }

  .grid-3{
    grid-template-columns:1fr;
  }

  .grid-2{
    grid-template-columns:1fr;
  }

  .footer .inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .btn{
    width:100%;
  }
}



/* EASY IMAGE SYSTEM */
.media.has-photo::after{content:none;}
.manual-photo.is-visible{opacity:1;}
.manual-photo{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* SERVICE DIALOG */
body.dialog-open{overflow:hidden;}

.dialog{
  border:0;
  padding:0;
  background:transparent;
}
.dialog::backdrop{
  background: rgba(216,193,173,.52);
  backdrop-filter: blur(4px);
}
.dialog-card{
  width:min(920px, calc(100vw - 32px));
  max-height:min(88vh, 980px);
  overflow:hidden;
  border:1px solid rgba(45,42,38,.10);
  border-radius:28px;
  background: linear-gradient(180deg, #f7f1eb 0%, #f3ece6 100%);
  box-shadow: 0 28px 90px rgba(82,64,48,.22);
}
.dialog-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:24px 24px 12px;
  border-bottom:1px solid rgba(45,42,38,.08);
}
.dialog-head .btn{
  flex-shrink:0;
}
.dialog-body{
  padding:24px;
  overflow:auto;
}
.service-popup{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:22px;
  align-items:start;
}
.service-popup-media{
  border-radius:22px;
  overflow:hidden;
  min-height:280px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(45,42,38,.08);
}
.service-popup-media img{
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:cover;
  display:block;
}
.service-popup-content{
  min-width:0;
}
.service-popup-intro{
  margin:0 0 16px;
}
.service-popup-section + .service-popup-section{
  margin-top:18px;
}
.service-popup-section h3{
  margin:0 0 8px;
  font-size:28px;
  font-family: "Georgia", "Times New Roman", serif;
}
.service-popup-section ul{
  margin:0;
  padding-left:22px;
}
.service-popup-section li{
  margin:0 0 8px;
}
.service-popup-note{
  margin-top:20px;
}

/* BETTER MOBILE */
@media (max-width: 900px){
  .menu{
    display:flex;
    overflow-x:auto;
    flex-wrap:nowrap;
    width:100%;
    padding-bottom:4px;
    -webkit-overflow-scrolling: touch;
  }
  .menu::-webkit-scrollbar{display:none;}
  .nav{
    flex-wrap:wrap;
  }
  .brand{
    width:100%;
    justify-content:center;
  }
  .nav > .btn.primary{
    width:100%;
  }

  .hero-inner{
    grid-template-columns:1fr;
    gap:18px;
    padding:30px 0;
  }
  .hero h1{
    font-size:32px;
  }
  .hero-card img{
    height:320px;
    opacity:1 !important;
  }

  .card .media{
    min-height:230px;
  }
  .card .media img{
    height:230px;
    opacity:1 !important;
  }

  .dialog-card{
    width:min(100vw - 18px, 720px);
    max-height:92vh;
    border-radius:24px;
  }
  .dialog-head{
    padding:18px 18px 10px;
    flex-direction:column;
  }
  .dialog-head .btn{
    width:auto;
  }
  .dialog-body{
    padding:18px;
  }
  .service-popup{
    grid-template-columns:1fr;
    gap:16px;
  }
  .service-popup-media,
  .service-popup-media img{
    min-height:220px;
    max-height:280px;
  }

  .footer .inner{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .container{
    padding:0 14px;
  }
  .page-header h1{
    font-size:28px;
  }
  .hero h1{
    font-size:28px;
  }
  .brand .logo{
    font-size:24px;
  }
  .brand .sub{
    font-size:10px;
    letter-spacing:2px;
  }
  .btn{
    padding:10px 14px;
  }
  .hero-actions{
    flex-direction:column;
  }
  .hero-actions .btn{
    width:100%;
  }

  .card .media{
    min-height:210px;
  }
  .card .media img{
    height:210px;
  }

  .dialog::backdrop{
    background: rgba(216,193,173,.65);
  }
  .dialog-card{
    width:calc(100vw - 12px);
    border-radius:22px;
  }
  .service-popup-section h3{
    font-size:23px;
  }
  .dialog-body{
    font-size:15px;
  }
}


/* CATEGORY PHOTO SIZE + SOFTER BEIGE BORDERS */
button.card.service-card{
  border:1px solid rgba(216,193,173,.50) !important;
  box-shadow: 0 10px 24px rgba(216,193,173,.18) !important;
  background: var(--white);
}
button.card.service-card .media{
  min-height: 150px !important;
  max-height: 150px !important;
  overflow: hidden;
  background: #f7f1eb !important;
}
button.card.service-card .media img{
  height: 150px !important;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display:block;
}
button.card.service-card .body{
  border-top: 1px solid rgba(216,193,173,.22);
}

/* POPUP WITHOUT BLACK EDGES */
.dialog{
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.dialog::backdrop{
  background: rgba(216,193,173,.62) !important;
  backdrop-filter: blur(4px);
}
.dialog-card{
  border: 1px solid rgba(216,193,173,.85) !important;
  background: linear-gradient(180deg, #fbf7f2 0%, #f4ece4 100%) !important;
  box-shadow: 0 24px 60px rgba(184,150,120,.20) !important;
}
.dialog-head{
  border-bottom: 1px solid rgba(216,193,173,.45) !important;
}
.service-popup-media{
  border: 1px solid rgba(216,193,173,.65) !important;
  box-shadow: 0 8px 20px rgba(216,193,173,.16);
}
.notice.service-popup-note{
  border: 1px solid rgba(216,193,173,.55) !important;
  background: rgba(255,255,255,.45) !important;
}

/* MOBILE */
@media (max-width: 900px){
  button.card.service-card .media{
    min-height: 130px !important;
    max-height: 130px !important;
  }
  button.card.service-card .media img{
    height: 130px !important;
  }
}

@media (max-width: 640px){
  button.card.service-card .media{
    min-height: 120px !important;
    max-height: 120px !important;
  }
  button.card.service-card .media img{
    height: 120px !important;
  }
  .dialog-card{
    width: calc(100vw - 14px) !important;
  }
}




/* =========================
   V7 CONSISTENT SOFT THEME
   ========================= */

:root{
  --bg-page: #f8f5f2;
  --bg-soft: #eee7e0;
  --bg-soft-2: #f4eeea;
  --line-soft: rgba(188, 160, 132, .22);
  --line-strong: rgba(188, 160, 132, .38);
  --shadow-soft: 0 12px 34px rgba(96, 74, 54, .08);
  --shadow-card: 0 18px 46px rgba(96, 74, 54, .08);
}

body{
  background: var(--bg-page);
  color: var(--text);
}

main{
  min-height: 60vh;
}

.topbar{
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(10px);
}

.nav{
  padding: 16px 0;
}

.brand .logo{
  color: #2f241d;
}

.brand .sub{
  color: #8e7761;
  letter-spacing: 4px;
}

.menu{
  gap: 22px;
}

.menu a{
  position: relative;
  font-size: 15px;
  color: #6f6257;
}

.menu a:hover{
  color: #2f241d;
}

.btn{
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  padding: 11px 18px;
  box-shadow: none;
}

.btn.primary{
  background: #d7c0aa;
  color: #fff;
}

.btn.ghost{
  background: rgba(255,255,255,.82);
}

.btn.ghost:hover{
  background: #f4ece6;
}

.hero{
  background: linear-gradient(180deg, #ece4dc 0%, #f7f3ef 100%);
  border-bottom: 1px solid var(--line-soft);
}

.hero-inner{
  padding: 58px 0 60px;
  gap: 30px;
}

.hero h1{
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: #2e241d;
}

.hero p{
  color: #6f6257;
  font-size: 18px;
}

.hero-card{
  border-radius: 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-soft);
  background: #fff;
}

.hero-card img{
  height: 500px;
  opacity: 1 !important;
}

.badge{
  background: rgba(215, 192, 170, .22);
  color: #5e4b3d;
  border: 1px solid rgba(215, 192, 170, .34);
  font-weight: 600;
}

.page-header,
.page-hero{
  padding: 48px 0 44px;
  background: linear-gradient(180deg, #ebe3db 0%, #f3ede8 100%);
  border-bottom: 1px solid var(--line-soft);
}

.page-header h1,
.page-hero h1{
  margin: 0;
  font-family:"Georgia", "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: #2e241d;
}

.page-header p,
.page-hero p{
  margin: 14px 0 0;
  color: #706156;
  font-size: 18px;
  max-width: 58ch;
}

.section{
  padding: 56px 0;
}

.card,
.price-table,
.notice,
.soft-box{
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.card{
  border-radius: 28px;
  background: rgba(255,255,255,.88);
}

.card .body{
  padding: 22px;
}

.card h2,
.card h3,
.soft-box h2{
  color: #312720;
}

.card p,
.soft-box p{
  color: #706156;
}

.soft-box{
  background: rgba(255,255,255,.82);
  border-radius: 28px;
  padding: 24px 26px;
}

.soft-box h2{
  margin: 0 0 14px;
  font-family:"Georgia", "Times New Roman", serif;
  font-size: 28px;
}

.soft-box p{
  margin: 0 0 8px;
  font-size: 15px;
}

.notice{
  background: rgba(255,255,255,.72);
  border-radius: 22px;
  padding: 16px 18px;
}

.input,
select.input,
textarea.input{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 13px 14px;
  color: #2f241d;
}

.input:focus,
select.input:focus,
textarea.input:focus{
  outline: none;
  border-color: rgba(188, 160, 132, .68);
  box-shadow: 0 0 0 4px rgba(215, 192, 170, .18);
}

.price-wrap{
  max-width: 980px;
}

.price-table{
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.9);
}

.price-table thead th{
  background: rgba(215, 192, 170, .18);
  color: #5c4a3d;
  font-weight: 600;
  padding: 18px 18px;
}

.price-table tbody td{
  padding: 18px 18px;
  border-top: 1px solid var(--line-soft);
}

.price-table tbody tr:hover td{
  background: rgba(215, 192, 170, .08);
}

.tag{
  background: rgba(215, 192, 170, .18);
  color: #6b5648;
}

.reviews-top,
.reviews-list,
.grid-2,
.grid-3{
  gap: 22px;
}

.rating-big{
  font-size: 24px;
}

.stars{
  color: #b7926e;
}

.section-title h2{
  font-size: 34px;
  color: #2f241d;
}

.divider{
  height: 1px;
  background: var(--line-soft);
  margin: 28px 0;
}

.strip{
  background: linear-gradient(180deg, #ece4dc 0%, #e5d8cc 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.strip h3{
  font-size: 26px;
  font-family:"Georgia", "Times New Roman", serif;
  color: #2e241d;
}

.footer{
  background: #221a15;
  color: #f3ece6;
}

.footer .inner{
  gap: 30px;
}

.footer .logo,
.footer-title,
.footer h4{
  color: #fff;
  font-family:"Georgia", "Times New Roman", serif;
}

.footer p,
.footer .muted,
.footer small{
  color: rgba(255,255,255,.76);
}

.footer .bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* ABOUT */
.about-grid{
  gap: 30px;
}

.about-copy{
  padding: 14px 0;
}

.about-copy h2{
  font-size: 40px !important;
  line-height: 1.1;
  color: #2f241d;
}

.about-copy p{
  font-size: 17px;
  line-height: 1.8;
}

.about-copy .list li{
  margin-bottom: 8px;
}

/* CONTACT */
.contact-grid{
  gap: 30px;
}

.contact-panel{
  display: grid;
  gap: 18px;
}

.contact-notice{
  margin-bottom: 0;
}

.contact-map-card .body{
  padding: 18px;
}

.contact-map-card h3{
  margin: 0 0 8px;
  font-size: 30px;
  font-family:"Georgia", "Times New Roman", serif;
}

.map-embed{
  height: 360px;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
}

/* ACCOUNT / REVIEWS */
.card.pad{
  padding: 24px;
}

.row.between{
  gap: 16px;
}

.strong{
  color: #2f241d;
}

/* AANBOD */
button.card.service-card{
  border: 1px solid var(--line-soft) !important;
  box-shadow: var(--shadow-soft) !important;
}

button.card.service-card .body h3{
  font-size: 24px;
  font-family:"Georgia", "Times New Roman", serif;
}

button.card.service-card .body p{
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 900px){
  .menu{
    display:flex;
    overflow-x:auto;
    flex-wrap:nowrap;
    width:100%;
    gap:18px;
    padding-bottom:4px;
  }
  .menu::-webkit-scrollbar{
    display:none;
  }
  .nav{
    flex-wrap:wrap;
  }
  .brand{
    width:100%;
    justify-content:center;
  }
  .nav > .btn.primary{
    width:100%;
  }
  .hero-inner{
    grid-template-columns:1fr;
    padding: 36px 0 40px;
  }
  .hero h1{
    font-size: 38px;
  }
  .hero p,
  .page-header p,
  .page-hero p{
    font-size: 16px;
  }
  .hero-card img{
    height: 380px;
  }
  .page-header h1,
  .page-hero h1{
    font-size: 38px;
  }
  .about-copy h2{
    font-size: 32px !important;
  }
  .soft-box{
    padding: 20px 20px;
  }
  .map-embed{
    height: 300px;
  }
  .footer .bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px){
  .container{
    padding: 0 14px;
  }
  .hero h1{
    font-size: 31px;
  }
  .page-header,
  .page-hero{
    padding: 34px 0 30px;
  }
  .page-header h1,
  .page-hero h1{
    font-size: 30px;
  }
  .brand .logo{
    font-size: 24px;
  }
  .brand .sub{
    letter-spacing: 2px;
  }
  .hero-card img{
    height: 290px;
  }
  .card,
  .price-table,
  .soft-box{
    border-radius: 22px;
  }
  .section{
    padding: 38px 0;
  }
  .section-title h2{
    font-size: 28px;
  }
  .contact-map-card h3{
    font-size: 25px;
  }
}




/* =========================
   V8 DESKTOP = SAME FEEL AS MOBILE
   ========================= */
@media (min-width: 901px){
  /* softer desktop spacing like mobile */
  .container{
    max-width: 1120px;
    padding: 0 22px;
  }

  .topbar{
    background: rgba(255,255,255,.94);
  }

  .nav{
    gap: 18px;
    align-items: center;
  }

  .menu{
    display: flex !important;
    gap: 20px;
    align-items: center;
  }

  /* homepage more balanced */
  .hero-inner{
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
  }

  .hero h1{
    font-size: 50px;
    max-width: 11ch;
  }

  .hero p{
    max-width: 46ch;
  }

  .hero-card{
    border-radius: 28px;
    overflow: hidden;
  }

  .hero-card img{
    height: 430px;
    width: 100%;
    object-fit: cover;
  }

  /* page headers same soft compact vibe */
  .page-header,
  .page-hero{
    padding: 40px 0 36px;
  }

  .page-header h1,
  .page-hero h1{
    font-size: 46px;
  }

  .page-header p,
  .page-hero p{
    font-size: 17px;
  }

  /* cards and sections */
  .section{
    padding: 48px 0;
  }

  .card,
  .soft-box,
  .price-table{
    border-radius: 26px;
  }

  .card .body{
    padding: 20px;
  }

  /* make aanbod cards same compact look as on phone */
  .grid-3{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
    margin: 0 auto;
  }

  button.card.service-card .media{
    min-height: 128px !important;
    max-height: 128px !important;
    background: #f7f1eb !important;
  }

  button.card.service-card .media img{
    height: 128px !important;
    width: 100%;
    object-fit: cover;
    display: block;
  }

  button.card.service-card .body h3{
    font-size: 22px;
  }

  /* popup same stacked elegant look as phone */
  .dialog-card{
    width: min(760px, calc(100vw - 48px)) !important;
    max-height: 90vh;
    border-radius: 26px !important;
  }

  .dialog-head{
    padding: 18px 20px 10px !important;
    flex-direction: column;
    align-items: flex-start;
  }

  .dialog-body{
    padding: 18px 20px 20px !important;
  }

  .service-popup{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-popup-media,
  .service-popup-media img{
    min-height: 230px !important;
    max-height: 230px !important;
  }

  .service-popup-section h3{
    font-size: 24px;
  }

  /* over/contact more polished and identical vibe */
  .about-grid,
  .contact-grid{
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }

  .about-copy{
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(188, 160, 132, .22);
    border-radius: 26px;
    box-shadow: 0 12px 34px rgba(96, 74, 54, .08);
    padding: 26px 28px;
  }

  .about-copy h2{
    font-size: 34px !important;
    margin-bottom: 12px;
  }

  .contact-panel{
    gap: 16px;
  }

  .contact-map-card .body{
    padding: 18px;
  }

  .contact-map-card .map-embed{
    height: 330px;
  }

  /* forms / reviews / account */
  .reviews-top{
    grid-template-columns: 1fr 1fr;
    max-width: 860px;
    margin: 0 auto 20px;
  }

  .reviews-list{
    max-width: 860px;
    margin: 0 auto;
  }

  .grid-2{
    gap: 22px;
  }

  /* footer cleaner */
  .footer .inner{
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 26px;
  }
}




/* =========================
   V9 PC EXACT PHONE STYLE
   ========================= */
@media (min-width: 901px){

  /* same compact centered look as phone */
  .container{
    max-width: 860px !important;
    padding: 0 18px !important;
  }

  .nav{
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  .brand{
    width: 100% !important;
    justify-content: center !important;
  }

  .menu{
    display: flex !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    padding-bottom: 4px !important;
    -webkit-overflow-scrolling: touch;
  }
  .menu::-webkit-scrollbar{
    display:none;
  }

  .nav > .btn.primary{
    width: 100% !important;
    max-width: 240px !important;
  }

  /* hero same stacked vibe as phone */
  .hero-inner{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    text-align: left !important;
    padding: 30px 0 34px !important;
  }

  .hero h1{
    font-size: 32px !important;
    line-height: 1.08 !important;
    max-width: 12ch !important;
  }

  .hero p{
    font-size: 16px !important;
    max-width: 52ch !important;
  }

  .hero-actions{
    flex-direction: column !important;
  }

  .hero-actions .btn{
    width: 100% !important;
    max-width: 260px !important;
  }

  .hero-card img{
    height: 320px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* page headers same size as mobile */
  .page-header,
  .page-hero{
    padding: 34px 0 30px !important;
  }

  .page-header h1,
  .page-hero h1{
    font-size: 30px !important;
  }

  .page-header p,
  .page-hero p{
    font-size: 16px !important;
  }

  /* stack layouts like phone */
  .grid-2,
  .grid-3,
  .reviews-top,
  .about-grid,
  .contact-grid,
  .footer .inner{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .section{
    padding: 38px 0 !important;
  }

  .section-title h2{
    font-size: 28px !important;
  }

  /* aanbod cards same compact mobile look */
  .grid-3{
    max-width: 100% !important;
    margin: 0 !important;
  }

  button.card.service-card .media{
    min-height: 120px !important;
    max-height: 120px !important;
  }

  button.card.service-card .media img{
    height: 120px !important;
  }

  button.card.service-card .body h3{
    font-size: 22px !important;
  }

  /* popup exactly like mobile stacked layout */
  .dialog-card{
    width: min(100vw - 20px, 720px) !important;
    max-height: 92vh !important;
    border-radius: 22px !important;
  }

  .dialog-head{
    padding: 18px 18px 10px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .dialog-head .btn{
    width: auto !important;
  }

  .dialog-body{
    padding: 18px !important;
    font-size: 15px !important;
  }

  .service-popup{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-popup-media,
  .service-popup-media img{
    min-height: 220px !important;
    max-height: 280px !important;
  }

  .service-popup-section h3{
    font-size: 23px !important;
  }

  /* about / contact same vertical boxes */
  .about-copy{
    padding: 20px 20px !important;
  }

  .about-copy h2{
    font-size: 32px !important;
  }

  .soft-box{
    padding: 20px 20px !important;
  }

  .contact-map-card .map-embed{
    height: 300px !important;
  }

  /* reviews same centered width */
  .reviews-top,
  .reviews-list{
    max-width: 100% !important;
    margin: 0 !important;
  }

  .footer .bottom{
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}




/* =========================
   V10 OVER PAGINA CEMILE
   ========================= */
.about-grid{
  align-items: stretch !important;
}

.about-profile-card{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.88);
}

.about-profile-media{
  min-height: 520px;
  max-height: 520px;
  background: #f4ece4;
}

.about-profile-media img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-profile-card .body{
  padding: 22px;
}

.about-profile-card h3{
  margin: 6px 0 10px;
  font-size: 32px;
  font-family: "Georgia", "Times New Roman", serif;
  color: #2f241d;
}

.about-profile-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #706156;
}

@media (max-width: 900px){
  .about-profile-media{
    min-height: 430px;
    max-height: 430px;
  }

  .about-profile-media img{
    height: 430px;
    object-position: center top;
  }

  .about-profile-card .body{
    padding: 20px;
  }

  .about-profile-card h3{
    font-size: 28px;
  }
}

@media (max-width: 640px){
  .about-profile-media{
    min-height: 340px;
    max-height: 340px;
  }

  .about-profile-media img{
    height: 340px;
  }

  .about-profile-card .body{
    padding: 18px;
  }

  .about-profile-card h3{
    font-size: 25px;
  }

  .about-profile-card p{
    font-size: 14px;
    line-height: 1.65;
  }
}
