:root{
  --cream:#f6ecda;
  --navy:#173247;
  --teal:#1f8a86;
  --teal-dark:#12615e;
  --orange:#e8912c;
  --orange-dark:#c9761a;
  --purple:#7a4a9e;
  --purple-dark:#5e3579;
  --line:#e3d6ba;
  --shadow: 0 6px 18px rgba(23,50,71,0.08);
}

*{box-sizing:border-box;}

body{
  margin:0;
  background:var(--cream);
  color:var(--navy);
  font-family:'Nunito', sans-serif;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(31,138,134,0.10) 0, transparent 40%),
    radial-gradient(circle at 92% 88%, rgba(122,74,158,0.10) 0, transparent 40%);
}

/* decorative paint-stroke header */
.hero{
  position:relative;
  overflow:hidden;
  padding:56px 24px 42px;
  text-align:center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.0), rgba(255,255,255,0.0));
}

.brush{
  position:absolute;
  border-radius:50% 40% 60% 45% / 50% 55% 40% 50%;
  filter:blur(0.5px);
  opacity:0.85;
  z-index:0;
}
.brush.b1{ width:340px; height:140px; top:-60px; left:-90px; background:var(--teal); transform:rotate(-12deg); }
.brush.b2{ width:260px; height:120px; top:-40px; right:-80px; background:var(--orange); transform:rotate(10deg); }
.brush.b3{ width:200px; height:90px; bottom:-50px; left:20%; background:var(--purple); opacity:0.18; transform:rotate(4deg); }

.hero-inner{ position:relative; z-index:1; }

.eyebrow{
  display:inline-block;
  font-weight:800;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-size:12.5px;
  color:var(--teal-dark);
  background:rgba(255,255,255,0.65);
  border:1px solid var(--line);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:18px;
}

h1.title{
  font-family:'Caveat', cursive;
  font-weight:700;
  font-size:64px;
  line-height:1;
  margin:0 0 8px;
  color:var(--navy);
}

h1.title .accent{ color:var(--orange-dark); }

.subtitle{
  max-width:560px;
  margin:0 auto;
  font-size:16px;
  line-height:1.55;
  color:#3c5064;
}

/* toolbar */
.toolbar{
  max-width:980px;
  margin:0 auto;
  padding:0 20px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.count-pill{
  font-weight:700;
  font-size:14px;
  color:var(--navy);
  background:#fff;
  border:1px solid var(--line);
  padding:8px 14px;
  border-radius:999px;
  box-shadow:var(--shadow);
}

.sort-hint{
  font-size:13.5px;
  color:#5a6b7a;
  font-style:italic;
}

/* catalogue card */
.catalogue-wrap{
  max-width:980px;
  margin:0 auto 60px;
  padding:0 20px;
}

.catalogue{
  background:#fffdf8;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

table{
  width:100%;
  border-collapse:collapse;
}

thead th{
  text-align:left;
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:#fff;
  background:var(--navy);
  padding:14px 18px;
  font-weight:800;
}

thead th.col-photo{ width:96px; }
thead th.col-price{
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}
thead th.col-price:hover{ background:#0f2635; }

thead th.col-price .arrow{
  display:inline-block;
  margin-left:6px;
  font-size:11px;
  opacity:0.6;
  transition:opacity 0.15s ease;
}
thead th.col-price.active .arrow{ opacity:1; }

tbody tr{
  border-top:1px solid var(--line);
  transition:background 0.15s ease;
}
tbody tr:hover{ background:#fbf3e2; }

tbody td{
  padding:12px 18px;
  vertical-align:middle;
  font-size:15px;
}

.thumb{
  width:64px;
  height:64px;
  border-radius:12px;
  overflow:hidden;
  background:repeating-linear-gradient(135deg, #eee4cc, #eee4cc 8px, #f6ecda 8px, #f6ecda 16px);
  border:1.5px dashed #c9b98f;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.thumb svg{ width:26px; height:26px; opacity:0.55; }

.work-title{
  font-weight:800;
  font-size:16px;
  color:var(--navy);
}
.work-number{
  display:inline-block;
  min-width:22px;
  text-align:center;
  font-weight:800;
  color:#fff;
  background:var(--teal);
  border-radius:50%;
  font-size:12.5px;
  padding:2px 0;
  margin-right:10px;
}

.price{
  font-weight:800;
  color:var(--purple-dark);
  white-space:nowrap;
}
.price .ongeveer{
  font-weight:600;
  font-style:italic;
  color:#7c6a58;
  margin-right:4px;
  font-size:13.5px;
}

footer.note{
  max-width:980px;
  margin:0 auto 50px;
  padding:0 20px;
  font-size:13px;
  color:#6a7686;
  line-height:1.6;
}

footer.note code{
  background:#efe4cb;
  padding:1px 6px;
  border-radius:6px;
  font-size:12.5px;
}

@media (max-width:560px){
  h1.title{ font-size:46px; }
  thead th.col-photo{ width:64px; }
  .thumb{ width:48px; height:48px; }
  tbody td{ padding:10px 12px; font-size:14px; }
}
