/* LS Wonen — 404 pagina */
.lsw-404 {
  --white:#FFFFFF; --bone:#F8F6F2; --ink:#14151A; --ink-soft:#2E2F34; --body:#6E707A; --rule:#ECECEA; --accent:#C89F49; --accent-soft:#FCEFE8; --whatsapp:#25D366;
  background: var(--white);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 120px;
  position: relative;
  overflow: hidden;
}
.lsw-404 *, .lsw-404 *::before, .lsw-404 *::after { box-sizing: border-box; }

.lsw-404__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.lsw-404__deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  max-width: 110vw;
  max-height: 110vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  opacity: .7;
}

.lsw-404__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 16px 5px 6px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 32px;
  box-shadow: 0 6px 18px -10px rgba(15,15,15,.12), 0 1px 2px rgba(15,15,15,.04);
  letter-spacing: -.005em;
}
.lsw-404__badge-icon {
  width: 28px; height: 28px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #F6DDD0 100%);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lsw-404__badge-icon svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.lsw-404__number {
  font-size: clamp(120px, 22vw, 240px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 60%, var(--ink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}
.lsw-404__number::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background: var(--accent);
  margin: 8px auto 0;
}

.lsw-404__h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink);
}

.lsw-404__sub {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  max-width: 520px;
  margin: 0 auto 36px;
}

.lsw-404__search {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 40px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
  box-shadow: 0 14px 30px -16px rgba(15,15,15,.14);
  transition: border-color .25s ease, box-shadow .35s ease;
}
.lsw-404__search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 14px 30px -16px rgba(200,159,73,.32), 0 0 0 4px rgba(200,159,73,.08);
}
.lsw-404__search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  padding: 0 14px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
}
.lsw-404__search-input::placeholder { color: var(--body); }
.lsw-404__search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--ink);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, transform .25s cubic-bezier(.2,.7,.2,1);
}
.lsw-404__search-btn:hover { background: var(--accent); transform: translateY(-1px); }
.lsw-404__search-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.lsw-404__links {
  margin: 0 0 40px;
}
.lsw-404__links-h {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--accent);
  margin: 0 0 18px;
}
.lsw-404__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.lsw-404__chip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--bone);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, transform .25s cubic-bezier(.2,.7,.2,1);
}
.lsw-404__chip a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.lsw-404__chip svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.lsw-404__cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.lsw-404__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s ease, color .3s ease;
}
.lsw-404__btn--primary { background: var(--ink); color: #fff; padding-right: 8px; }
.lsw-404__btn--primary:hover { background: var(--accent); transform: translateY(-2px); }
.lsw-404__btn-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s ease, color .3s ease;
}
.lsw-404__btn--primary:hover .lsw-404__btn-arrow { background: #fff; color: var(--accent); transform: rotate(-45deg); }
.lsw-404__btn-arrow svg { width: 14px; height: 14px; color: #fff; transition: color .3s ease; }
.lsw-404__btn--primary:hover .lsw-404__btn-arrow svg { color: var(--accent); }
.lsw-404__btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--rule);
}
.lsw-404__btn--ghost:hover { background: var(--bone); transform: translateY(-2px); }
.lsw-404__btn--ghost svg { width: 14px; height: 14px; }

@media (max-width: 720px) {
  .lsw-404 { padding: 56px 16px 80px; min-height: 60vh; }
  .lsw-404__sub { font-size: 14.5px; margin-bottom: 28px; }
  .lsw-404__search { margin-bottom: 32px; }
  .lsw-404__links { margin-bottom: 32px; }
  .lsw-404__chips { gap: 6px; }
  .lsw-404__chip a { padding: 8px 14px; font-size: 12.5px; }
  .lsw-404__cta { width: 100%; }
  .lsw-404__btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 420px) {
  .lsw-404__number::after { width: 60px; }
  .lsw-404__search { flex-direction: column; padding: 8px; border-radius: 18px; }
  .lsw-404__search-input { padding: 10px 12px; }
  .lsw-404__search-btn { justify-content: center; }
}
